-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
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
Introduce an invariants
block in NESTML neurons
#363
Comments
invariants
block in NESTML neuronsinvariants
block in NESTML neurons
@DimitriPlotnikov While I think that in general, this is a good idea, some questions are left open. There are certainly cases where variables are bounded only in one direction (e.g. the current which is always non-negative but unbounded upwards). Here, it would no longer be possible to distinguish between guards and invariants. On the other hand, guards can also be used with range expressions, e.g. the default value of V_m can variate between -50mV and -70mV. I think the best solution here would be an introduction of two new keywords, e.g. guard and invariant. |
Actually, why not use only one simple keyword, like "constraint", which seems more intuitive to me for the user (which will not think in terms of guards nor invariants)? |
@Silmathoron
Without starting to implement this requirement, it would have considerable runtime overhead. In the best case I assume, that any assignment must be extended such that . In the best case this check will be performed every time the constrained variable is accessed. Finally, what we still need is to able to model something like this (taken iaf_tum_2000):
In this example the lefthandside and righthandside of the comparison could be arbitrary expressions.
|
@DimitriPlotnikov I would be perfectly happy with your summarized block, it looks very simple and efficient to me, syntax-wize. Regarding your comment on having to check every time the variable is accessed, yes, indeed, this should be performed every timestep at the beginning of the update function, but a boolean test is fast... I'm not sure I understand your reference to the |
@Silmathoron I will take a look on this one in near future. Is it still of interest to implement such a feature? |
Hey, @kperun I'm really sorry for the late reply: I saw your message but couldn't reply, and then I forgot... |
@kperun: would it be possible to turn this into a PR? Or should the semantics be discussed/formalised further? |
Currently, invariants in NESTML models are defined at the end of declarations double square braces, e.g.
This notation is confusing and error prone (intuitively the constraint is useless, since V_m has the value -70 (user feedback))
Invariants should enforce state variables to be in the range during simulation (e.g.
STATE_VAR
is actively set to its lower or upper bound). Syntactically an invariant is always of the formlower_bound < STATE_VAR< upper_bound
. An exception is thrown in SetStatus, if a value s being set is out of the range.Guards is an arbitrary boolean expression (just an example) E_in + E_ex <= 42.. It can only be checked. Guards can be defined for all variables/expression, but they are checked only in SetStatus.
The text was updated successfully, but these errors were encountered: