Luc Grosheintz
Luc Grosheintz
Third version of a reproducer: ``` import numpy as np from neuron import h, gui from neuron.units import ms mods = [ "StochKv3", ] s = h.Section() for mod in...
@arnaudon I'd like to test changes related to this issue. However, the morphology files have vanished from GPFS, could you please update the reproducer such that the input files are...
Thank you! When using #2940, I get the same output with 9.0 and 8.2.4: ``` failed: {'bpo_holding_current': -0.0078125, 'SearchHoldingCurrent.soma.v': } ``` (the only difference is the address.)
Naturally, there are multiple stacks per line of output. Simply because multiple distinct statements can contribute to a single line of code. What this does is only print one "trace"...
I'm wondering what miserable line you're debugging =)
Fixes #1258.
I understand that it's rather partial solution. Some are tricky: should `if` be a legal variable name? I don't know and I want to punt. Same for `global`. I'd be...
Makes sense. The proper place to fix all of this is when NMODL create the string it sends to `SymPy`. That string should not contain any troublesome identifiers, i.e. all...
I'm surprised `class` and `try` would work. Edit: Liberal use of `#define` makes it work.
It feels very strange to allow C++ keywords as a variable names. It feels even more off to "fix" it by patching the string sent to SymPy, meaning the C++...