Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/fortran/poisson/poisson.f90
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ program main
end do

! check for valid Mx/My/Mz
if (Mx==0 .or. Mx==0 .or. My==0) then
if (Mx==0 .or. My==0 .or. Mz==0) then
if (rank == 0) write(*,*) 'Mx/My/Mz is 0 thus solution is u=0'
call MPI_Finalize(ierr)
stop
Expand Down