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

(lint) Fix obsolete boolean operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dyn3dmem/gcm.F90

    r4996 r5082  
    222222     ! we still need to run iniacademic to initialize some
    223223     ! constants & fields, if we run the 'newtonian' or 'SW' cases:
    224      if (iflag_phys.ne.1) then
     224     if (iflag_phys/=1) then
    225225        CALL iniacademic_loc(vcov,ucov,teta,q,masse,ps,phis,time_0)
    226226     endif
     
    254254  !  on recalcule eventuellement le pas de temps
    255255
    256   IF(MOD(day_step,iperiod).NE.0) THEN
     256  IF(MOD(day_step,iperiod)/=0) THEN
    257257     abort_message =  &
    258258          'Il faut choisir un nb de pas par jour multiple de iperiod'
     
    260260  ENDIF
    261261
    262   IF(MOD(day_step,iphysiq).NE.0) THEN
     262  IF(MOD(day_step,iphysiq)/=0) THEN
    263263     abort_message =  &
    264264          'Il faut choisir un nb de pas par jour multiple de iphysiq'
     
    267267
    268268  zdtvr    = daysec/REAL(day_step)
    269   IF(dtvr.NE.zdtvr) THEN
     269  IF(dtvr/=zdtvr) THEN
    270270     WRITE(lunout,*) &
    271271          'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr
     
    295295     write(lunout,*) &
    296296          'GCM: On reinitialise a la date lue dans gcm.def'
    297   ELSE IF (annee_ref .ne. anneeref .or. day_ref .ne. dayref) THEN
     297  ELSE IF (annee_ref /= anneeref .or. day_ref /= dayref) THEN
    298298     write(lunout,*) &
    299299          'GCM: Attention les dates initiales lues dans le fichier'
     
    353353#endif
    354354
    355   if (iflag_phys.eq.1) then
     355  if (iflag_phys==1) then
    356356     ! these initialisations have already been done (via iniacademic)
    357357     ! if running in SW or Newtonian mode
Note: See TracChangeset for help on using the changeset viewer.