Browse Source

Switch to MTBDD only if MTBDD engine is not already selected

accumulation-v4.7
Joachim Klein 7 years ago
parent
commit
0972e1c183
  1. 2
      prism/src/prism/Prism.java

2
prism/src/prism/Prism.java

@ -2953,7 +2953,7 @@ public class Prism extends PrismComponent implements PrismSettingsListener
+ "Either switch to the explicit engine or add more action labels to the model");
}
if (!getExplicit() && !engineSwitch) {
if (!getExplicit() && !engineSwitch && getEngine() != MTBDD) {
// check if we need to switch to MTBDD engine
long n = currentModel.getNumStates();
if (n == -1 || n > Integer.MAX_VALUE) {

Loading…
Cancel
Save