8.1.17 Status_Not_Equal_Status Procedure

The Status_Not_Equal_Status procedure returns a logical value which is true when the two status variable inputs are not equal (i.e. have different states). It has an operator (/= or .ne.) interface.

Calling syntax:

Logical = S1 /= S2 or
Logical = Not_Equal(S1, S2)  

Input variable:

 S1, S2  The status variables to be compared.

Output variable:

 Not_Equal  True iff the two status variables have different states.

The Status_Not_Equal_Status code listing contains additional documentation.

Michael L. Hall