Wiktor Phillips
Wiktor Phillips
Using the `idxs` keyword on solutions to index many symbols will crash Julia completely (terminates Julia and underlying terminal process before any stacktrace or segfault display for me). Maybe related...
Same error message as #991 results when trying to solve problems with `u0` of eltype `Any` (in this case, due to remaining unresolved symbolic expressions). Below is a minimum reproducer....
The following MWE errors in ModelingToolkit.jl because symbolic callback conditions internally passed to `build_function` are `::Num` and call the method [here](https://github.com/JuliaSymbolics/Symbolics.jl/blob/7eac91321ccd5a68254005ba39770d629201a867/src/build_function.jl#L99-L124), without kwarg slurping, which differs from the [rhss form](https://github.com/JuliaSymbolics/Symbolics.jl/blob/7eac91321ccd5a68254005ba39770d629201a867/src/build_function.jl#L248-L259)...
If you have a large MTK system that needs ShardedForm for compilation/performance reasons, it will fail if it contains observed variables that normally get assigned/evaluated in the let block preceding...
We should allow construction and manipulation of neuronal networks as a graph object instead of explicit adjacency lists (e.g. `Vector{Synapse}`). Ideally we should support multilayer graphs that are compatible with...
There should be an easier and more readable way to specify gating variables, channels, compartments, etc. Ref https://github.com/wsphillips/Conductor.jl/pull/8#issuecomment-907722134 for beginnings of this.
From parent issue #66 Add a cached value for the the time stamp of the last spike event for each neuron so that we can support time-based refractory periods in...
From parent issue #66 Spike thresholds are hard coded to occur at 10mV membrane potential. Add an extra argument during construction of synaptic models or compartment models that lets users...
Currently spike events are hard coded to occur when: 1. Somatic voltage potential exceeds 10mV. 2. If the compartment is refractory, a spike occurs only if the membrane potential was...