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

    r5003 r5082  
    197197
    198198   lerr=strParse(type_trac, '|', types_trac, n=nt)
    199    IF (nt .GT. 1) THEN
    200       IF (nt .GT. 2) CALL abort_physic(modname, 'you need to modify type_trac, this version is not supported by lmdz', 1)
    201       IF (nt .EQ. 2) type_trac=types_trac(2)
     199   IF (nt > 1) THEN
     200      IF (nt > 2) CALL abort_physic(modname, 'you need to modify type_trac, this version is not supported by lmdz', 1)
     201      IF (nt == 2) type_trac=types_trac(2)
    202202   ENDIF
    203203
Note: See TracChangeset for help on using the changeset viewer.