Operator =
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(integrator_adams_moulton), | intent(inout) | :: | lhs | Left hand side. |
||
class(integrator_object), | intent(in) | :: | rhs | Right hand side. |
subroutine integr_assign_integr(lhs, rhs)
!< Operator `=`.
class(integrator_adams_moulton), intent(inout) :: lhs !< Left hand side.
class(integrator_object), intent(in) :: rhs !< Right hand side.
call lhs%assign_multistep(rhs=rhs)
select type(rhs)
class is (integrator_adams_moulton)
lhs%steps = rhs%steps
if (allocated(rhs%b)) lhs%b = rhs%b
endselect
endsubroutine integr_assign_integr