Operator =
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(integrator_lmm_ssp_vss), | intent(inout) | :: | lhs | Left hand side. |
||
class(integrator_object), | intent(in) | :: | rhs | Right hand side. |
subroutine integr_assign_integr(lhs, rhs)
!< Operator `=`.
class(integrator_lmm_ssp_vss), 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_lmm_ssp_vss)
if (associated(rhs%integrate_)) lhs%integrate_ => rhs%integrate_
endselect
endsubroutine integr_assign_integr