Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Fixed syntax in coarray image reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Mar 28, 2023
1 parent 066e085 commit 7357bdf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/swiftest/swiftest_driver.f90
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ program swiftest_driver
if (this_image() == 1) then
write(param%display_unit,'(a)') ' Coarray parameters:'
write(param%display_unit,'(a)') ' -------------------'
write(param%display_unit,'(a)') ' Number of images = ', num_images()
write(param%display_unit,'(a,i3)') ' Number of images = ', num_images()
if (param%log_output) write(*,'(a,i3)') ' Coarray: Number of images = ',num_images()
#endif

call nbody_system%initialize(param)
Expand Down

0 comments on commit 7357bdf

Please sign in to comment.