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/misc/formcoord.F

    r1907 r5082  
    2525      endif
    2626
    27       if (n.lt.2) then
     27      if (n<2) then
    2828         ndec=1
    2929         write(unit,1000) text,n,x(1)*a
     
    3232         do i=2,n-1
    3333            dx=abs(x(i+1)-x(i))
    34             if (dx.lt.dxmin) dxmin=dx
     34            if (dx<dxmin) dxmin=dx
    3535         enddo
    3636
    3737         ndec=-log10(dxmin)+2
    38          if(mod(n,6).eq.1) then
     38         if(mod(n,6)==1) then
    3939            write(unit,1000) text,n,x(i1)*a
    4040            write(unit,2000) (x(i)*a,i=i2,in,id)
Note: See TracChangeset for help on using the changeset viewer.