greaterThan Function

private elemental function greaterThan(a, b) result(res)

Relational operator to test if one operand is greater than another.

Arguments

TypeIntentOptionalAttributesName
real(kind=rk), intent(in) :: a

Floating point value to be compared.

real(kind=rk), intent(in) :: b

Floating point value to be compared.

Return Value logical

The result is a logical value indicating whether the operand a is greater than b by more than the spacing between representable floating point numbers.


Called by

proc~~greaterthan~~CalledByGraph proc~greaterthan greaterThan proc~greaterthanorequal greaterThanOrEqual proc~greaterthanorequal->proc~greaterthan interface~operator (.fgt.) operator (.fgt.) interface~operator (.fgt.)->proc~greaterthan interface~operator (.fge.) operator (.fge.) interface~operator (.fge.)->proc~greaterthanorequal

Contents

None