Nicolas Cornu

Results 113 comments of Nicolas Cornu

We should look at https://github.com/neuronsimulator/nrn/issues/1957 Some of those items are already covered.

And so we use some of them. What should we do?

I found this quite related: https://github.com/BlueBrain/nmodl/issues/249

We should remove `VarName` at then and use `Identifier` (base class of all type).

I always like to clean code, but what was the idea behind this ticket?

I use a tool called `ts` that add the time in front of each line. After I use `make -j1`. The time is the time to print the line. >...

I try to precompiled `ast.hpp`, it changes nothing

Related to: https://github.com/BlueBrain/nmodl/issues/260

From this mod file https://github.com/suny-downstate-medical-center/netpyne/blob/coreneuron/examples/coreneuron/m1/mod/my_exp2syn.mod#L82_L86 We can see: ``` NET_RECEIVE(weight (uS)) { state_discontinuity(A, A + weight*factor) state_discontinuity(B, B + weight*factor) } ``` and mod2c generate: ```c++ state_discontinuity(-1, &A, A +...