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

(lint) Fix obsolete boolean operators

Location:
LMDZ6/branches/Amaury_dev/libf/dynphy_lonlat/phylmd
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dynphy_lonlat/phylmd/callphysiq_mod.F90

    r4619 r5082  
    6262! Sanity check on physics package type
    6363  IF (firstcall) THEN
    64     IF (planet_type.ne."earth") THEN
     64    IF (planet_type/="earth") THEN
    6565      CALL abort_gcm(modname,"wrong planet_type for this physics package",1)
    6666    ENDIF
  • LMDZ6/branches/Amaury_dev/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90

    r4389 r5082  
    129129  slab_ekman=0
    130130  CALL getin_p('slab_ekman',slab_ekman)
    131   IF ((type_ocean=='slab').AND.(slab_hdiff.OR.(slab_ekman.GT.0))) THEN
     131  IF ((type_ocean=='slab').AND.(slab_hdiff.OR.(slab_ekman>0))) THEN
    132132     CALL ini_slab_transp_geom(ip1jm,ip1jmp1,unsairez,fext,unsaire,&
    133133                                  cu,cuvsurcv,cv,cvusurcu, &
  • LMDZ6/branches/Amaury_dev/libf/dynphy_lonlat/phylmd/init_ssrf_m.F90

    r4283 r5082  
    5959! Sub-surfaces initialization
    6060!*******************************************************************************
    61   IF (landice_opt .LT. 2) THEN
     61  IF (landice_opt < 2) THEN
    6262     ! Continue with reading landice.nc file
    6363     WRITE(lunout,*)"Read landice.nc file to attribute is_lic fraction"
Note: See TracChangeset for help on using the changeset viewer.