We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 398c3ea commit 659edaeCopy full SHA for 659edae
1 file changed
pnmcc/fr.lip6.move.gal.application.pnmcc/src/fr/lip6/move/gal/application/runner/spot/SpotRunner.java
@@ -60,7 +60,12 @@ public static enum GivenStrategy {
60
/** A variant of restrict designed to make the language SI */
61
STUTTER_RESTRICT,
62
/** do both [the default] */
63
- ALL;
+ ALL,
64
+ /** small automata */
65
+ AUTO_SMALL,
66
+ /** Stutter insensitive automata */
67
+ AUTO_SI
68
+ ;
69
70
public String toString() {
71
switch (this) {
@@ -70,6 +75,8 @@ public String toString() {
75
case STUTTER_RELAX: return "stutter-relax";
76
case STUTTER_RESTRICT: return "stutter-restrict";
72
77
case ALL: return "all";
78
+ case AUTO_SMALL: return "auto-small";
79
+ case AUTO_SI: return "auto-si";
73
80
default : return null;
74
81
}
82
0 commit comments