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
This currently throws an UndefVarError for E:
UndefVarError
E
@parameters E F @reaction_network begin @equations D(A) ~ E + F end
Is this expected?
The text was updated successfully, but these errors were encountered:
This needs to be
@reaction_network begin @parameters E F @equations D(A) ~ E + F end
or
@reaction_network begin @equations D(A) ~ $E + $F end
Variables/species/parameters declared outside the DSL need to be interpolated into it.
Sorry, something went wrong.
No branches or pull requests
This currently throws an
UndefVarError
forE
:Is this expected?
The text was updated successfully, but these errors were encountered: