equal_array Function

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.


Calls

proc~~equal_array~~CallsGraph proc~equal_array equal_array proc~equal equal proc~equal_array->proc~equal

Called by

proc~~equal_array~~CalledByGraph proc~equal_array equal_array proc~notequal_array notEqual_array proc~notequal_array->proc~equal_array interface~operator (.feq.) operator (.feq.) interface~operator (.feq.)->proc~equal_array interface~operator (.fne.) operator (.fne.) interface~operator (.fne.)->proc~notequal_array

Contents


Variables

TypeVisibilityAttributesNameInitial
integer, private :: i