New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 14858 – NEMO

Changeset 14858


Ignore:
Timestamp:
2021-05-12T20:24:25+02:00 (3 years ago)
Author:
smueller
Message:

Adjustment of two logical expressions (ticket #2353)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2021/dev_r14122_HPC-08_Mueller_OSMOSIS_streamlining/src/OCE/ZDF/zdfosm.F90

    r14828 r14858  
    11741174      ! 
    11751175      zfwd = 1.0_wp 
    1176       IF( PRESENT(fwd) .AND. ( fwd==.FALSE. ) ) zfwd = -1.0_wp 
     1176      IF( PRESENT(fwd) .AND. ( .NOT. fwd ) ) zfwd = -1.0_wp 
    11771177      DO_2D( 0, 0, 0, 0 ) 
    11781178         ztmp      = pu(ji,jj) 
     
    12071207      ! 
    12081208      zfwd = 1.0_wp 
    1209       IF( PRESENT(fwd) .AND. ( fwd==.FALSE. ) ) zfwd = -1.0_wp 
     1209      IF( PRESENT(fwd) .AND. ( .NOT. fwd ) ) zfwd = -1.0_wp 
    12101210      jktop = 1 
    12111211      IF( PRESENT(ktop) ) jktop = ktop 
Note: See TracChangeset for help on using the changeset viewer.