I have a model in muXmv, where I initialize with a range of values like -
VAR x : 0..100; ASSIGN init(x) := 10..50;
this works perfectly fine.
However, when I use variable instead of values,
ASSIGN init(x) := LB..UB; DEFINE LB := 10; UB := 50;
it throw syntax error -
line 14: at token "..": syntax error
line 14: Parser error
Not sure where I am going wrong?
Also is there a better way to declare constants in nuxmv?