Changeset 4180 for trunk/LMDZ.COMMON/libf/evolution/display.F90
- Timestamp:
- Apr 10, 2026, 7:17:55 PM (6 hours ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/display.F90 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/display.F90
r4170 r4180 19 19 use, intrinsic :: iso_fortran_env, only: stderr => error_unit 20 20 use, intrinsic :: iso_fortran_env, only: stdin => input_unit 21 use numerics, only: dp, di, li, k4, minieps21 use numerics, only: dp, di, li, k4, eps 22 22 23 23 ! DECLARATION … … 277 277 278 278 END SUBROUTINE print_msg 279 !======================================================================= 280 281 !======================================================================= 282 FUNCTION is_lvl_enabled(lvl) RESULT(enabled) 283 !----------------------------------------------------------------------- 284 ! NAME 285 ! is_lvl_enabled 286 ! 287 ! DESCRIPTION 288 ! Return true if a message at level 'lvl' should be displayed. 289 ! 290 ! AUTHORS & DATE 291 ! JB Clement, 04/2026 292 ! 293 ! NOTES 294 ! 295 !----------------------------------------------------------------------- 296 297 ! DECLARATION 298 ! ----------- 299 implicit none 300 301 ! ARGUMENTS 302 ! --------- 303 integer(di), intent(in) :: lvl 304 305 ! LOCAL VARIABLES 306 ! --------------- 307 logical(k4) :: enabled 308 309 ! CODE 310 ! ---- 311 enabled = .false. 312 if (lvl <= verbosity_lvl) enabled = .true. 313 314 END FUNCTION is_lvl_enabled 279 315 !======================================================================= 280 316 … … 465 501 if (gottacatch_emall_()) then 466 502 call print_msg('',LVL_NFO) 467 if (abs(n_yr_run - first_gen) < minieps) then503 if (abs(n_yr_run - first_gen) < eps) then 468 504 do i = 1,size(surprise) 469 505 call print_msg(trim(surprise(i)),LVL_NFO)
Note: See TracChangeset
for help on using the changeset viewer.
