Operator =
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(integrator_adams_bashforth_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_bashforth_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_bashforth_moulton)
lhs%steps = rhs%steps
lhs%predictor = rhs%predictor
lhs%corrector = rhs%corrector
endselect
endsubroutine integr_assign_integr