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/coordij.F

    r2598 r5082  
    2828
    2929      DO i=1,iim+1
    30          IF (rlonu(i).GT.zlon) THEN
     30         IF (rlonu(i)>zlon) THEN
    3131            ilon=i
    3232            GOTO 10
     
    3737      j=0
    3838      DO j=1,jjm
    39          IF(rlatv(j).LT.zlat) THEN
     39         IF(rlatv(j)<zlat) THEN
    4040            jlat=j
    4141            GOTO 20
     
    4343      ENDDO
    444420    CONTINUE
    45       IF(j.EQ.0) j=jjm+1
     45      IF(j==0) j=jjm+1
    4646
    4747      RETURN
Note: See TracChangeset for help on using the changeset viewer.