boolean = COMPL( arg )
compl Boolean. (Integer, Logical, or Real.) The bit-wise boolean .NOT. of arg.
arg Integer, Logical, or Real. The input argument.
The external function COMPL returns the bit-wise boolean .NOT. of arg. For equations and other information, see Volume 3: UNICOS Math and Scientific Library Reference Manual SR-2081 7.0, Cray Research, Inc.
Since COMPL is not an ANSI Fortran 77 intrinsic function, it must be declared as an external function of type integer, logical or real. For example: EXTERNAL COMPL LOGICAL COMPL LOGICAL X ... X = COMPL( .TRUE. ) ! Same as X = .FALSE. For more information about boolean functions, see the sciport man page.