File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed
Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 1+ KNOWNBUG
2+ self1.smv
3+
4+ ^EXIT=0$
5+ ^SIGNAL=0$
6+ --
7+ ^warning: ignoring
8+ --
9+ This does not parse.
Original file line number Diff line number Diff line change 1+ -- from the NuSMV 2.7 manual
2+
3+ MODULE container(init_value1, init_value2)
4+ VAR c1 : counter(init_value1, self);
5+ VAR c2 : counter(init_value2, self);
6+
7+ MODULE counter(init_value, my_container)
8+ VAR v: 1..100;
9+ ASSIGN
10+ init(v) := init_value;
11+ DEFINE
12+ greatestCounterInContainer := v >= my_container.c1.v &
13+ v >= my_container.c2.v;
14+
15+ MODULE main
16+ VAR c : container(14, 7);
17+ SPEC
18+ c.c1.greatestCounterInContainer;
Original file line number Diff line number Diff line change 1- CORE
1+ CORE broken-smt-backend
22use_before_declaration1.smv
3+
34^EXIT=0$
45^SIGNAL=0$
56--
You can’t perform that action at this time.
0 commit comments