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/phylmd/cosp2/parasol.F90

    r3358 r5082  
    9797
    9898    ! Relative fraction of the opt. thick due to liquid or ice clouds
    99     WHERE (tautot_S(1:npoints) .gt. 0.)
     99    WHERE (tautot_S(1:npoints) > 0.)
    100100       frac_taucol_liq(1:npoints) = tautot_S_liq(1:npoints) / tautot_S(1:npoints)
    101101       frac_taucol_ice(1:npoints) = tautot_S_ice(1:npoints) / tautot_S(1:npoints)
     
    118118    DO it=1,PARASOL_NREFL
    119119       DO ny=1,PARASOL_NTAU-1
    120           WHERE (tautot_S(1:npoints) .ge. PARASOL_TAU(ny).and. &
    121                  tautot_S(1:npoints) .le. PARASOL_TAU(ny+1))
     120          WHERE (tautot_S(1:npoints) >= PARASOL_TAU(ny).and. &
     121                 tautot_S(1:npoints) <= PARASOL_TAU(ny+1))
    122122             rlumA_mod(1:npoints,it) = aA(it,ny)*tautot_S(1:npoints) + bA(it,ny)
    123123             rlumB_mod(1:npoints,it) = aB(it,ny)*tautot_S(1:npoints) + bB(it,ny)
Note: See TracChangeset for help on using the changeset viewer.