File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
src/main/antlr4/model/ltl Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1- G(('E(variable)' | 'E(array)') -> F'S(VOC)')
1+ true
2+ 'S(state0)' -> FG true
3+ G(('E(variable)' | 'E(array)') -> F'S(VOC)')
4+ G(('E(see_minus)' | 'E(vertical_line)') -> (F'S(NestedMachine)' | F'S(ForkMachine)' | F'S(NameWithArrow)' | F'S(Fork)'))
Original file line number Diff line number Diff line change 1- G(('E(see_minus)' | 'E(vertical_line)') -> (F'S(NestedMachine)' | F'S(ForkMachine)'))
1+ false
2+ G('E(machine_name)' -> F'A(WriteToken)')
3+ G(('E(see_minus)' | 'E(vertical_line)') -> (F'S(NestedMachine)' | F'S(ForkMachine)'))
Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ primary returns [Formula<String> f]
5757 {
5858 $f = $ltl.f;
5959 }
60- | NOT primary
60+ | NOT ltl
6161 {
62- $f = LTL.not($primary .f);
62+ $f = LTL.not($ltl .f);
6363 }
6464 ;
6565
You can’t perform that action at this time.
0 commit comments