operator (.fne.) Interface

private interface operator (.fne.)

Calls

interface~~operator (.fne.)~~CallsGraph interface~operator (.fne.) operator (.fne.) proc~notequal notEqual interface~operator (.fne.)->proc~notequal proc~notequal_array notEqual_array interface~operator (.fne.)->proc~notequal_array proc~equal equal proc~notequal->proc~equal proc~equal_array equal_array proc~notequal_array->proc~equal_array proc~equal_array->proc~equal

Contents


Module Procedures

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

Relational operator to test the not-equality of floating point numbers.

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 operands are not equal to within numerical precision.

private pure function notEqual_array(a, b) result(res)

Relational operator to test the not-equality of two floating point arrays.

Arguments

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

Floating point array to be compared.

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

Floating point array to be compared.

Return Value logical

The result is a logical value indicating whether the operands are not equal to within numerical precision.