Skip to content

Commit

Permalink
Fixing compilation date message
Browse files Browse the repository at this point in the history
  • Loading branch information
lmdiazangulo committed Jan 30, 2025
1 parent 6034d3f commit 732de77
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src_main_pub/fdetypes.F90
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ module FDETYPES
integer (kind=8), parameter :: MaxProbes=150000 !Maximum number of probes (a limit of 200000 is set with ulimit in Linux)
!
!
INTEGER, parameter :: topCPUtime=10000000 !maximum cpu time in minutes !set to 690 in UGRGRID
INTEGER, parameter :: topCPUtime=10000000 !maximum cpu time in minutes
!size of character strings
INTEGER, parameter :: BUFSIZE=1024
INTEGER, parameter :: BUFSIZE_LONG=16384
Expand Down
2 changes: 1 addition & 1 deletion src_main_pub/interpreta_switches.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ subroutine interpreta(l,statuse)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
if ((l%run)) then !el modo run crea el semaforo pause para permiter encolados salvajes en ugrgrid
if ((l%run)) then
#ifdef keeppause
!!!solo para el cluster
INQUIRE (file='running', EXIST=hayinput)
Expand Down
11 changes: 4 additions & 7 deletions src_main_pub/version.F90
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
module version
character (128), parameter :: compdate= &
' Tue Jul 16 12:00:00 2023 +0000' // &
' '
character(128), parameter :: dataversion= &
'SEMBA-FDTD Version v1.0 (Release)' // &
trim(adjustl(compdate))
end module version
character (128), parameter :: compdate= __DATE__ // " " // __TIME__
character(128), parameter :: dataversion=&
'SEMBA-FDTD Version v1.0. Compiled on: ' // trim(adjustl(compdate))
end module version

0 comments on commit 732de77

Please sign in to comment.