Ignore:
Timestamp:
Aug 2, 2024, 2:12:03 PM (3 months ago)
Author:
abarral
Message:

Add missing klon on strataer_emiss_mod.F90
Correct various missing explicit declarations
Replace tabs by spaces (tabs are not part of the fortran charset)
Continue cleaning modules
Removed unused arguments and variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/misc/lmdz_interpolation.f90

    r5119 r5158  
    3434    jl = 0
    3535    ju = n + 1
    36     do while (ju - jl > 1)
     36    DO while (ju - jl > 1)
    3737      jm = (ju + jl) / 2 ! Compute a midpoint,
    3838      IF (ascnd .eqv. (x >= xx(jm))) THEN
     
    120120    end if ! Done hunting, value bracketed.
    121121
    122     do ! Hunt is done, so begin the final bisection phase:
     122    DO ! Hunt is done, so begin the final bisection phase:
    123123      IF (jhi - jlo <= 1) THEN
    124124        IF (x == xx(n)) jlo = n - 1
Note: See TracChangeset for help on using the changeset viewer.