Skip to content

Commit 659edae

Browse files
committed
new features of spot : auto-si auto-small
1 parent 398c3ea commit 659edae

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

  • pnmcc/fr.lip6.move.gal.application.pnmcc/src/fr/lip6/move/gal/application/runner/spot

pnmcc/fr.lip6.move.gal.application.pnmcc/src/fr/lip6/move/gal/application/runner/spot/SpotRunner.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,12 @@ public static enum GivenStrategy {
6060
/** A variant of restrict designed to make the language SI */
6161
STUTTER_RESTRICT,
6262
/** do both [the default] */
63-
ALL;
63+
ALL,
64+
/** small automata */
65+
AUTO_SMALL,
66+
/** Stutter insensitive automata */
67+
AUTO_SI
68+
;
6469

6570
public String toString() {
6671
switch (this) {
@@ -70,6 +75,8 @@ public String toString() {
7075
case STUTTER_RELAX: return "stutter-relax";
7176
case STUTTER_RESTRICT: return "stutter-restrict";
7277
case ALL: return "all";
78+
case AUTO_SMALL: return "auto-small";
79+
case AUTO_SI: return "auto-si";
7380
default : return null;
7481
}
7582
}

0 commit comments

Comments
 (0)