operator (.feq.) Interface

private interface operator (.feq.)

Calls

interface~~operator (.feq.)~~CallsGraph interface~operator (.feq.) operator (.feq.) proc~equal equal interface~operator (.feq.)->proc~equal proc~equal_array equal_array interface~operator (.feq.)->proc~equal_array proc~equal_array->proc~equal

Contents


Module Procedures

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

Relational operator to test the 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 equal to within numerical precision.

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

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

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