Browse Source

explicit: Improve error message for unsupported multi-objective model checking

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@11994 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Joachim Klein 9 years ago
parent
commit
885ae560a7
  1. 2
      prism/src/explicit/StateModelChecker.java

2
prism/src/explicit/StateModelChecker.java

@ -665,7 +665,7 @@ public class StateModelChecker extends PrismComponent
case ExpressionFunc.LOG:
return checkExpressionFuncBinary(model, expr, statesOfInterest);
case ExpressionFunc.MULTI:
throw new PrismNotSupportedException("Multi-objective model checking is not supported for " + model.getModelType() + "s");
throw new PrismNotSupportedException("Multi-objective model checking is not supported for " + model.getModelType() + "s with the explicit engine");
default:
throw new PrismException("Unrecognised function \"" + expr.getName() + "\"");
}

Loading…
Cancel
Save