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
As in #539 and other PRs it is a problem to initialise other systems based on the model selection:
I suggest adding in semidiscretization:
for_each(semi) do system_A for_each(semi) do system_B # pseudocode if system_A == system_B continue end initialize!(system_A, system_B) end end
And handling all initialization that is based on other systems in the dispatch of initialize!(system_A, system_B).
Examples of this are:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As in #539 and other PRs it is a problem to initialise other systems based on the model selection:
I suggest adding in semidiscretization:
And handling all initialization that is based on other systems in the dispatch of initialize!(system_A, system_B).
Examples of this are:
The text was updated successfully, but these errors were encountered: