Ignore:
Timestamp:
Jul 24, 2024, 4:23:34 PM (2 months ago)
Author:
abarral
Message:

rename modules properly lmdz_*
move some unused files to obsolete/
(lint) uppercase fortran keywords

File:
1 edited

Legend:

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

    r5116 r5117  
    1515    CHARACTER(LEN = *), INTENT(IN) :: string
    1616    LOGICAL, INTENT(IN) :: n1
    17     if (.not. n1) THEN
     17    IF (.NOT. n1) THEN
    1818      write (*, *) 'nrerror: an assertion failed with this tag:', &
    1919              string
     
    2626    CHARACTER(LEN = *), INTENT(IN) :: string
    2727    LOGICAL, INTENT(IN) :: n1, n2
    28     if (.not. (n1 .and. n2)) THEN
     28    IF (.NOT. (n1 .AND. n2)) THEN
    2929      write (*, *) 'nrerror: an assertion failed with this tag:', &
    3030              string
     
    3737    CHARACTER(LEN = *), INTENT(IN) :: string
    3838    LOGICAL, INTENT(IN) :: n1, n2, n3
    39     if (.not. (n1 .and. n2 .and. n3)) THEN
     39    IF (.NOT. (n1 .AND. n2 .AND. n3)) THEN
    4040      write (*, *) 'nrerror: an assertion failed with this tag:', &
    4141              string
     
    4848    CHARACTER(LEN = *), INTENT(IN) :: string
    4949    LOGICAL, INTENT(IN) :: n1, n2, n3, n4
    50     if (.not. (n1 .and. n2 .and. n3 .and. n4)) THEN
     50    IF (.NOT. (n1 .AND. n2 .AND. n3 .AND. n4)) THEN
    5151      write (*, *) 'nrerror: an assertion failed with this tag:', &
    5252              string
     
    5959    CHARACTER(LEN = *), INTENT(IN) :: string
    6060    LOGICAL, DIMENSION(:), INTENT(IN) :: n
    61     if (.not. all(n)) THEN
     61    IF (.NOT. all(n)) THEN
    6262      write (*, *) 'nrerror: an assertion failed with this tag:', &
    6363              string
Note: See TracChangeset for help on using the changeset viewer.