Browse Source

Comment

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@4654 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 14 years ago
parent
commit
be4417dbe9
  1. 3
      prism/src/explicit/ProbModelChecker.java

3
prism/src/explicit/ProbModelChecker.java

@ -46,6 +46,7 @@ import explicit.rewards.MDPRewards;
public class ProbModelChecker extends StateModelChecker
{
// Flags/settings
// (NB: defaults do not necessarily coincide with PRISM)
// Method used to solve linear equation systems
protected LinEqMethod linEqMethod = LinEqMethod.GAUSS_SEIDEL;
@ -56,7 +57,7 @@ public class ProbModelChecker extends StateModelChecker
// Parameter for iterative numerical method termination criteria
protected double termCritParam = 1e-8;
// Max iterations for numerical solution
protected int maxIters = 100000; // TODO: make same as PRISM?
protected int maxIters = 100000;
// Use precomputation algorithms in model checking?
protected boolean precomp = true;
protected boolean prob0 = true;

Loading…
Cancel
Save