Ignore:
Timestamp:
Jul 19, 2024, 5:41:58 PM (2 months ago)
Author:
abarral
Message:

(lint) Fix obsolete boolean operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dyn3d_common/exner_hyb_m.F90

    r2600 r5082  
    5858    if (firstcall) then
    5959       ! sanity checks for Shallow Water case (1 vertical layer)
    60        if (llm.eq.1) then
    61           if (kappa.ne.1) then
     60       if (llm==1) then
     61          if (kappa/=1) then
    6262             call abort_gcm(modname, &
    6363                  "kappa!=1 , but running in Shallow Water mode!!",42)
    6464          endif
    65           if (cpp.ne.r) then
     65          if (cpp/=r) then
    6666             call abort_gcm(modname, &
    6767                  "cpp!=r , but running in Shallow Water mode!!",42)
     
    7373
    7474    ! Specific behaviour for Shallow Water (1 vertical layer) case:
    75     if (llm.eq.1) then
     75    if (llm==1) then
    7676
    7777       ! Compute pks(:),pk(:),pkf(:)
Note: See TracChangeset for help on using the changeset viewer.