Luc Grosheintz

Results 129 issues of Luc Grosheintz

The following MOD file: ``` $ cat invalid_name.mod NEURON { SUFFIX invalid_name } INITIAL { LOCAL _kf } ``` fails as follows: ``` [NMODL] [info] :: Processing invalid_name.mod terminate called...

The following MOD file ``` NEURON { SUFFIX leonhard } STATE { x } INITIAL { x = 42 } BREAKPOINT { SOLVE dX METHOD cnexp } DERIVATIVE dX {...

I tried compiling the following mod file: ``` NEURON { SUFFIX leonhard } STATE { x } INITIAL { x = 42 } BREAKPOINT { SOLVE dX METHOD cnexp }...

After implementing ion variables the method `CodegenNeuronCppVisitor::get_variable_name` can be deduplicated. See https://github.com/BlueBrain/nmodl/pull/1119/files/f6244077ddc28c9011edd6d118412590db163550#r1423743310

This page has issues with formatting links and code-blocks: https://bluebrain.github.io/nmodl/html/contributing.html This page fails to display Latex formulas: https://bluebrain.github.io/nmodl/html/notebooks/nmodl-sympy-solver-cnexp.html This page fails to display latex formulas and has a IPython prompt...

Some MOD files, including `ProbAMPANMDA_EMS.mod`, define RANGE variables that solely depend on GLOBAL variables. Hence, these variables don't need to be RANGE and could be converted to GLOBAL. Example: ```...

For solving non-linear system NMODL can generate the Jacobian using sympy. The order in which the entries of `J` are computed is row-major & iterleaved with computing `F`. There used...

Add the code for printing `net_move` for NEURON+nmodl. Also adds a usecase demonstrating the behaviour of `net_move`.

Adds supports and tests for printing `net_event` calls. Note that `net_event` can IIUC only be called from inside `NET_RECEIVE` blocks.