=
operator.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(integrand_lcce), | intent(inout) | :: | lhs | Left hand side. |
||
class(integrand_object), | intent(in) | :: | rhs | Right hand side. |
pure subroutine assign_integrand(lhs, rhs)
!< `=` operator.
class(integrand_lcce), intent(inout) :: lhs !< Left hand side.
class(integrand_object), intent(in) :: rhs !< Right hand side.
select type(rhs)
class is(integrand_lcce)
lhs%a = rhs%a
lhs%b = rhs%b
lhs%U = rhs%U
lhs%U0 = rhs%U0
endselect
endsubroutine assign_integrand