For loops in NMODL
Posted: Mon Oct 05, 2009 5:15 am
Do for loops exist in NMODL? Or do I have to break into a VERBATIM block? If so, is there any other conditional loop in NMODL? Are VERBATIM blocks always un-threadsafe?
Code: Select all
FROM <index> = <expression> TO <expression> [BY <positive increment>]
{
<statement list>
}
WHILE [<unary_logical_operator>] <expression>
[<binary_logical_operator> <expression>]
{
<statement list>
}