-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6034d3f
commit 732de77
Showing
3 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |