Skip to content

Commit 97161f4

Browse files
committed
MagIC version 5.8
1 parent 2bb2d2e commit 97161f4

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

doc/magic_manual.pdf

-135 KB
Binary file not shown.

doc/sphinx/apiFortran/parallelModules.rst

+5
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,8 @@ MPI related modules
1818
----------------------
1919

2020
.. f:automodule:: communications
21+
22+
``mpi_transpose.f90``
23+
----------------------
24+
25+
.. f:automodule:: mpi_transp

doc/sphinx/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
# built documents.
6666
#
6767
# The short X.Y version.
68-
version = '5.7'
68+
version = '5.8'
6969
# The full version, including alpha/beta/rc tags.
70-
release = '5.7'
70+
release = '5.8'
7171

7272
# The language for content autogenerated by Sphinx. Refer to documentation
7373
# for a list of supported languages.

src/constants.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ module constants
3838
real(cp), parameter :: cos36=cos(36.0_cp*pi/180.0_cp) ! :math:`\cos{36\pi/180}`
3939
real(cp), parameter :: cos72=cos(72.0_cp*pi/180.0_cp) ! :math:`\cos{72\pi/180}`
4040

41-
character(len=4), parameter :: codeVersion='5.7'
41+
character(len=4), parameter :: codeVersion='5.8'
4242

4343
end module constants

src/magic.f90

+6-6
Original file line numberDiff line numberDiff line change
@@ -216,12 +216,12 @@ program magic
216216
if ( rank == 0 ) then
217217
open(newunit=n_log_file, file=log_file, status='new')
218218

219-
write(n_log_file,*) '! __ __ _____ _____ _____ ______ '
220-
write(n_log_file,*) '! | \/ | |_ _/ ____| | ____|____ | '
221-
write(n_log_file,*) '! | \ / | __ _ __ _ | || | | |__ / / '
222-
write(n_log_file,*) '! | |\/| |/ _` |/ _` | | || | |___ \ / / '
223-
write(n_log_file,*) '! | | | | (_| | (_| |_| || |____ ___) | / / '
224-
write(n_log_file,*) '! |_| |_|\__,_|\__, |_____\_____| |____(_)_/ '
219+
write(n_log_file,*) '! __ __ _____ _____ _____ ___ '
220+
write(n_log_file,*) '! | \/ | |_ _/ ____| | ____|/ _ \ '
221+
write(n_log_file,*) '! | \ / | __ _ __ _ | || | | |__ | (_) | '
222+
write(n_log_file,*) '! | |\/| |/ _` |/ _` | | || | |___ \ > _ < '
223+
write(n_log_file,*) '! | | | | (_| | (_| |_| || |____ ___) | (_) | '
224+
write(n_log_file,*) '! |_| |_|\__,_|\__, |_____\_____| |____(_)___/ '
225225
write(n_log_file,*) '! __/ | '
226226
write(n_log_file,*) '! |___/ '
227227
write(n_log_file,*) '! '

0 commit comments

Comments
 (0)