Toon Knapen wrote:

Fortran LOGICAL



could you elaborate?

Toon,

There is no universally-agreed Fortran convention for how .TRUE. and .FALSE. boolean values are represented and how a value is checked for .TRUE. and .FALSE.

Some Fortran implementations use 0 for .FALSE. and 1 for .TRUE. (they may test for .TRUE. as being NON-ZERO) Some Fortran implementations use 0 for .FALSE. and -1 for .TRUE. (they may test for .TRUE. as being NEGATIVE) Some Fortran implementations use -1 for .FALSE. and +1 for .TRUE. (they may test for POSITIVE .TRUE. and NEGATIVE .FALSE.)

Checkout the PGI and ABSOFT Fortran compilers for example.

Regards
      Neil

--
+-----------------+---------------------------------+------------------+
| Neil Storer     |    Head: Systems S/W Section    | Operations Dept. |
+-----------------+---------------------------------+------------------+
| ECMWF,          | email: neil.sto...@ecmwf.int    |    //=\\  //=\\  |
| Shinfield Park, | Tel:   (+44 118) 9499353        |   //   \\//   \\ |
| Reading,        |        (+44 118) 9499000 x 2353 | ECMWF            |
| Berkshire,      | Fax:   (+44 118) 9869450        | ECMWF            |
| RG2 9AX,        |                                 |   \\   //\\   // |
| UK              | URL:   http://www.ecmwf.int/    |    \\=//  \\=//  |
+--+--------------+---------------------------------+----------------+-+
  | ECMWF is the European Centre for Medium-Range Weather Forecasts |
  +-----------------------------------------------------------------+

Reply via email to