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
pi
NMODL seems to allow the following:
NEURON { SUFFIX state_pi } STATE { omicron pi } BREAKPOINT { SOLVE state METHOD sparse } KINETIC state { ~ omicron <-> pi (1, 1) }
However, we also find code that sets up double * pi = &coreneuron::pi. It might make sense to find the test that asserts the correct behaviour.
double * pi = &coreneuron::pi
The text was updated successfully, but these errors were encountered:
Fails as follows (sometimes):
x86_64/corenrn/mod2c/variable_names.cpp:155:20: error: redeclaration of ‘double* coreneuron::variable_names_Instance::pi’ 155 | double* pi{}; | ^
Likely a better error message would be good.
Sorry, something went wrong.
No branches or pull requests
NMODL seems to allow the following:
However, we also find code that sets up
double * pi = &coreneuron::pi
. It might make sense to find the test that asserts the correct behaviour.The text was updated successfully, but these errors were encountered: