real -
operator.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=R_P), | intent(in) | :: | lhs(1:) | Left hand side. |
||
class(integrand_oscillation), | intent(in) | :: | rhs | Left hand side. |
Operator result.
pure function real_sub_integrand(lhs, rhs) result(opr)
!< `real -` operator.
class(integrand_oscillation), intent(in) :: rhs !< Left hand side.
real(R_P), intent(in) :: lhs(1:) !< Left hand side.
real(R_P), allocatable :: opr(:) !< Operator result.
opr = lhs - rhs%U
endfunction real_sub_integrand