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

(lint) Fix obsolete boolean operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/optics_lib.F90

    r3358 r5082  
    558558       if(tk < temref(4)) tk=temref(4)
    559559       do i=2,4
    560           if(tk.ge.temref(i)) go to 12
     560          if(tk>=temref(i)) go to 12
    561561       enddo
    56256212     lt1 = i
    563563       lt2 = i-1
    564564       do i=2,nwlt
    565           if(alam.le.wlt(i)) go to 14
     565          if(alam<=wlt(i)) go to 14
    566566       enddo
    56756714     x1  = log(wlt(i-1))
     
    652652    Complex(wp) :: A1
    653653   
    654     If ((Dx.Gt.Imaxx) .Or. (InP.Gt.ImaxNP)) Then
     654    If ((Dx>Imaxx) .Or. (InP>ImaxNP)) Then
    655655       Error = 1
    656656       Return
     
    659659    Ir = 1 / Cm
    660660    Y =  Dx * Cm
    661     If (Dx.Lt.0.02) Then
     661    If (Dx<0.02) Then
    662662       NStop = 2
    663663    Else
    664        If (Dx.Le.8.0) Then
     664       If (Dx<=8.0) Then
    665665          NStop = Dx + 4.00*Dx**(1./3.) + 2.0
    666666       Else
    667           If (Dx.Lt. 4200.0) Then
     667          If (Dx< 4200.0) Then
    668668             NStop = Dx + 4.05*Dx**(1./3.) + 2.0
    669669          Else
     
    673673    End If
    674674    NmX = Max(Real(NStop),Real(Abs(Y))) + 15.
    675     If (Nmx .gt. Itermax) then
     675    If (Nmx > Itermax) then
    676676       Error = 1
    677677       Return
     
    726726!ds       Dqxt = Tnp1 *      Dble(A + B)          + Dqxt
    727727       Dqsc = Tnp1 * (A*Conjg(A) + B*Conjg(B)) + Dqsc
    728        If (N.Gt.1) then
     728       If (N>1) then
    729729          Dg = Dg + (dN*dN - 1) * (ANM1*Conjg(A) + BNM1 * Conjg(B)) / dN + TNM1 *(ANM1*Conjg(BNM1)) / (dN*dN - dN)
    730730!ds          Dg = Dg + (dN*dN - 1) * Dble(ANM1*Conjg(A) + BNM1 * Conjg(B)) / dN + TNM1 * Dble(ANM1*Conjg(BNM1)) / (dN*dN - dN)
     
    735735       AMB = A2 * (A - B)
    736736       Do I = 1,Inp2
    737           If (I.GT.Inp) Then
     737          If (I>Inp) Then
    738738             S(I) = -Pi1(I)
    739739          Else
     
    756756    End Do
    757757
    758     If (Dg .GT.0) Dg = 2 * Dg / Dqsc
     758    If (Dg >0) Dg = 2 * Dg / Dqsc
    759759    Dqsc =  2 * Dqsc / Dx**2
    760760    Dqxt =  2 * Dqxt / Dx**2
Note: See TracChangeset for help on using the changeset viewer.