Ignore:
Timestamp:
Jul 23, 2024, 7:14:34 PM (8 weeks ago)
Author:
abarral
Message:

Replace 1DUTILS.h by module lmdz_1dutils.f90
Replace 1DConv.h by module lmdz_old_1dconv.f90 (it's only used by old_* files)
Convert *.F to *.f90
Fix gradsdef.h formatting
Remove unnecessary "RETURN" at the end of functions/subroutines

File:
1 moved

Legend:

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

    r5104 r5105  
    1       FUNCTION cbrt(x)
    2       ! Return the cubic root for positive or negative x
    3       IMPLICIT NONE
     1FUNCTION cbrt(x)
     2  ! ! Return the cubic root for positive or negative x
     3  IMPLICIT NONE
    44
    5       REAL x,cbrt
     5  REAL :: x,cbrt
    66
    7       cbrt=sign(1.,x)*(abs(x)**(1./3.))
     7  cbrt=sign(1.,x)*(abs(x)**(1./3.))
    88
    9       RETURN
    10       END
    119
     10END FUNCTION cbrt
     11
Note: See TracChangeset for help on using the changeset viewer.