Browse Source

Added option to set epsilon for A-R loop.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@1866 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 16 years ago
parent
commit
7ab0f64ad0
  1. 4
      prism/src/explicit/STPGAbstractRefine.java

4
prism/src/explicit/STPGAbstractRefine.java

@ -285,6 +285,10 @@ public abstract class STPGAbstractRefine
throw new PrismException("Unknown refinement option \"" + ss[1] + "\"");
}
}
} else if (opt.equals("epsilonref") || opt.equals("eref")) {
if (optVal != null) {
setRefineTermCritParam(Double.parseDouble(optVal));
}
} else if (opt.equals("nopre")) {
getModelChecker().setPrecomp(false);
} else if (opt.equals("pre")) {

Loading…
Cancel
Save