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
The following MOD file
NEURON { SUFFIX leonhard } STATE { x } INITIAL { x = 42 } BREAKPOINT { SOLVE dX METHOD cnexp } DERIVATIVE dX { x' = sin(x*x) }
fails as follows:
$ nmodl leonhard.mod host sympy --analytic terminate called after throwing an instance of 'std::runtime_error' what(): NMODL Parser Error : syntax error, unexpected / [Location : 1.25] ------------------------^ $ nmodl leonhard.mod --verbose debug host sympy --analytic [NMODL] [debug] :: SympySolverVisitor :: -> solution: x = // Not supported in C: // Integral dt + Integral(1/sin(_y**2), (_y, x)) libc++abi: terminating with uncaught exception of type std::runtime_error: NMODL Parser Error : syntax error, unexpected / [Location : 1.25] ------------------------^ [1] 68964 abort PYTHONPATH=./lib/ ./bin/nmodl test.mod --verbose debug host sympy --analytic
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The following MOD file
fails as follows:
The text was updated successfully, but these errors were encountered: