Skip to content

Commit

Permalink
Jose's change + Misc
Browse files Browse the repository at this point in the history
  • Loading branch information
Anand Radhakrishnan committed Apr 4, 2024
1 parent 26a22f7 commit f7e2a5f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/pre_process/m_checker.f90
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,10 @@ subroutine s_check_inputs()
.or. &
(y_domain%beg /= dflt_real .or. y_domain%end /= dflt_real) &
.or. &
(y_domain%beg /= dflt_real .or. y_domain%end /= dflt_real))
then
(y_domain%beg /= dflt_real .or. y_domain%end /= dflt_real)) then
call s_mpi_abort('domain are not dflt_real.'// &
'Please, correct them')
elseif (m == dflt_int .or. n == dflt_int .or. p == dflt_int)
then
elseif (m == dflt_int .or. n == dflt_int .or. p == dflt_int) then
call s_mpi_abort('m, n, and/or p are set to dflt_int.'// &
'Please, correct them')
end if
Expand Down

0 comments on commit f7e2a5f

Please sign in to comment.