We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See discussion in #1 .
Both read_deck and problem_setup are called twice during the set-up. A better, less confusing, and less dangerous option would be:
read_deck
problem_setup
... CALL read_deck CALL problem_setup_main ... SUBROUTINE read_deck ... READ(..., NML=problem,...) CALL problem_setup_control REAL(...,NML=control,...) ... END SUBROUTINE read_deck
With the current problem_setup routine split into problem_setup_control and problem_setup_main.
problem_setup_control
problem_setup_main
The text was updated successfully, but these errors were encountered:
TomGoffrey
No branches or pull requests
See discussion in #1 .
Both
read_deck
andproblem_setup
are called twice during the set-up. A better, less confusing, and less dangerous option would be:With the current
problem_setup
routine split intoproblem_setup_control
andproblem_setup_main
.The text was updated successfully, but these errors were encountered: