Skip to content

Commit

Permalink
fix checker (#793)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisZYJ authored Jan 25, 2025
1 parent f1582f6 commit 6b3e012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pre_process/m_checker.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ contains
"${DIR}$_domain%${BOUND}$ must not be set when ${VAR}$ > 0 and old_grid = T")
@:PROHIBIT(${VAR}$ > 0 .and. (.not. old_grid) .and. f_is_default(${DIR}$_domain%${BOUND}$), &
"${DIR}$_domain%${BOUND}$ must be set when ${VAR}$ > 0 and old_grid = F")
@:PROHIBIT(${VAR}$ > 0 .and. ${DIR}$_domain%beg >= ${DIR}$_domain%end, &
@:PROHIBIT(${VAR}$ > 0 .and. (.not. old_grid) .and. ${DIR}$_domain%beg >= ${DIR}$_domain%end, &
"${DIR}$_domain%beg must be less than ${DIR}$_domain%end when both are set")
#:endfor
end if
Expand Down

0 comments on commit 6b3e012

Please sign in to comment.