-
fast operator.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(integrand_oscillation), | intent(inout) | :: | opr | Operator result. |
||
class(integrand_object), | intent(in) | :: | lhs | Left hand side. |
||
class(integrand_object), | intent(in) | :: | rhs | Right hand side. |
pure subroutine integrand_subtract_integrand_fast(opr, lhs, rhs)
!< `-` fast operator.
class(integrand_oscillation), intent(inout) :: opr !< Operator result.
class(integrand_object), intent(in) :: lhs !< Left hand side.
class(integrand_object), intent(in) :: rhs !< Right hand side.
select type(lhs)
class is(integrand_oscillation)
select type(rhs)
class is(integrand_oscillation)
opr%U = lhs%U - rhs%U
endselect
endselect
endsubroutine integrand_subtract_integrand_fast