Browse Source

prism/LTLModelChecker: add remark to TODO

For the non-fair case, the restriction is indeed done
by the ECComputer, but for the fair case, the restriction
of candidateStates to states_Li_not is required.


git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@11243 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Joachim Klein 10 years ago
parent
commit
9611929efc
  1. 4
      prism/src/prism/LTLModelChecker.java

4
prism/src/prism/LTLModelChecker.java

@ -872,7 +872,9 @@ public class LTLModelChecker extends PrismComponent
// Find states in the model for which there are no transitions leaving !L_i
// (this will allow us to reduce the problem to finding MECs, not ECs)
// TODO: I don't think this next step is needed,
// since the ECComputer restricts the model in this way anyway
// since the ECComputer restricts the model in this way anyway.
// However, for fairness, the restriction of the candidateStates
// to statesLi_not has to happen for correctness.
JDD.Ref(model.getTrans01());
JDD.Ref(statesLi_not);
candidateStates = JDD.Apply(JDD.TIMES, model.getTrans01(), statesLi_not);

Loading…
Cancel
Save