Ignore:
Timestamp:
Jul 24, 2024, 2:54:37 PM (2 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move ismin, ismax, minmax into new lmdz_libmath.f90
(lint) uppercase fortran keywords

File:
1 edited

Legend:

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

    r5115 r5116  
    489489    ! the points  XE.
    490490
    491     use lmdz_assert_eq, only: assert_eq
     491    use lmdz_assert_eq, ONLY: assert_eq
    492492
    493493    REAL, intent(in) :: X(:) ! real array of independent variable values
     
    572572    ! 2001, pages 43-47
    573573
    574     use lmdz_assert_eq, only: assert_eq
     574    use lmdz_assert_eq, ONLY: assert_eq
    575575
    576576    real, intent(in) :: x(:)
     
    638638
    639639    n = assert_eq(size(x), size(f), "pchsp_95 n")
    640     if ((ibeg == 1 .or. ibeg == 2) .and. .not. present(vc_beg)) then
     640    if ((ibeg == 1 .or. ibeg == 2) .and. .not. present(vc_beg)) THEN
    641641      print *, "vc_beg required for IBEG = 1 or 2"
    642642      stop 1
    643643    end if
    644     if ((iend == 1 .or. iend == 2) .and. .not. present(vc_end)) then
     644    if ((iend == 1 .or. iend == 2) .and. .not. present(vc_end)) THEN
    645645      print *, "vc_end required for IEND = 1 or 2"
    646646      stop 1
Note: See TracChangeset for help on using the changeset viewer.