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

    r4470 r5082  
    4646
    4747      if(firsttime(if)) then
    48          if(name.eq.var(1,if)) then
     48         if(name==var(1,if)) then
    4949            firsttime(if)=.false.
    5050            ivar(if)=1
     
    6868      else
    6969         ivar(if)=mod(ivar(if),nvar(if))+1
    70          if (ivar(if).eq.nvar(if)) then
     70         if (ivar(if)==nvar(if)) then
    7171            writectl=.true.
    7272            itime(if)=itime(if)+1
    7373         endif
    7474
    75          if(var(ivar(if),if).ne.name) then
     75         if(var(ivar(if),if)/=name) then
    7676           print*,'Il faut stoker la meme succession de champs a chaque'
    7777           print*,'pas de temps'
Note: See TracChangeset for help on using the changeset viewer.