Ignore:
Timestamp:
Aug 3, 2024, 2:56:58 PM (4 months ago)
Author:
abarral
Message:

Put .h into modules

Location:
LMDZ6/branches/Amaury_dev/libf/misc
Files:
2 edited

Legend:

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

    r5119 r5160  
    1616      write (*, *) 'nrerror: an assertion failed with this tag:', &
    1717              string
    18       print *, 'program terminated by assert1'
     18      PRINT *, 'program terminated by assert1'
    1919      stop 1
    2020    end if
     
    2727      write (*, *) 'nrerror: an assertion failed with this tag:', &
    2828              string
    29       print *, 'program terminated by assert2'
     29      PRINT *, 'program terminated by assert2'
    3030      stop 1
    3131    end if
     
    3838      write (*, *) 'nrerror: an assertion failed with this tag:', &
    3939              string
    40       print *, 'program terminated by assert3'
     40      PRINT *, 'program terminated by assert3'
    4141      stop 1
    4242    end if
     
    4949      write (*, *) 'nrerror: an assertion failed with this tag:', &
    5050              string
    51       print *, 'program terminated by assert4'
     51      PRINT *, 'program terminated by assert4'
    5252      stop 1
    5353    end if
     
    6060      write (*, *) 'nrerror: an assertion failed with this tag:', &
    6161              string
    62       print *, 'program terminated by assert_v'
     62      PRINT *, 'program terminated by assert_v'
    6363      stop 1
    6464    end if
  • LMDZ6/branches/Amaury_dev/libf/misc/lmdz_libmath_pch.f90

    r5159 r5160  
    639639    n = assert_eq(size(x), size(f), "pchsp_95 n")
    640640    IF ((ibeg == 1 .OR. ibeg == 2) .AND. .NOT. present(vc_beg)) THEN
    641       print *, "vc_beg required for IBEG = 1 or 2"
     641      PRINT *, "vc_beg required for IBEG = 1 or 2"
    642642      stop 1
    643643    end if
    644644    IF ((iend == 1 .OR. iend == 2) .AND. .NOT. present(vc_end)) THEN
    645       print *, "vc_end required for IEND = 1 or 2"
     645      PRINT *, "vc_end required for IEND = 1 or 2"
    646646      stop 1
    647647    end if
Note: See TracChangeset for help on using the changeset viewer.