Skip to content
Snippets Groups Projects
Commit 3921c534 authored by RODIER Quentin's avatar RODIER Quentin
Browse files

Quentin 21/01/2022: bugfix last commit functions in tools.F90 not read by...

Quentin 21/01/2022: bugfix last commit functions in tools.F90 not read by mode_ll.F90 (despite the USE ???) ==> Functions WEST/SOUTH/NORTH/EST migrated to mode_ll.F90
parent a106ce9c
No related branches found
No related tags found
No related merge requests found
...@@ -19,4 +19,20 @@ CONTAINS ...@@ -19,4 +19,20 @@ CONTAINS
TYPE(LIST_ll), POINTER :: TPLIST ! pointer to the list of fields to be updated TYPE(LIST_ll), POINTER :: TPLIST ! pointer to the list of fields to be updated
INTEGER :: KINFO ! return status INTEGER :: KINFO ! return status
END SUBROUTINE UPDATE_HALO_ll END SUBROUTINE UPDATE_HALO_ll
LOGICAL FUNCTION LNORTH_ll()
LNORTH_ll=.FALSE.
END FUNCTION LNORTH_ll
!
LOGICAL FUNCTION LEAST_ll()
LEAST_ll=.FALSE.
END FUNCTION LEAST_ll
!
LOGICAL FUNCTION LWEST_ll()
LWEST_ll=.FALSE.
END FUNCTION LWEST_ll
!
LOGICAL FUNCTION LSOUTH_ll()
LSOUTH_ll=.FALSE.
END FUNCTION LSOUTH_ll
END MODULE MODE_ll END MODULE MODE_ll
...@@ -136,20 +136,4 @@ function Upcase(hstring) ...@@ -136,20 +136,4 @@ function Upcase(hstring)
end do end do
end function Upcase end function Upcase
LOGICAL FUNCTION LNORTH_ll()
LNORTH_ll=.FALSE.
END FUNCTION LNORTH_ll
!
LOGICAL FUNCTION LEAST_ll()
LEAST_ll=.FALSE.
END FUNCTION LEAST_ll
!
LOGICAL FUNCTION LWEST_ll()
LWEST_ll=.FALSE.
END FUNCTION LWEST_ll
!
LOGICAL FUNCTION LSOUTH_ll()
LSOUTH_ll=.FALSE.
END FUNCTION LSOUTH_ll
end module mode_tools end module mode_tools
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment