Browse Source

Small bug fix in explicit EC computation.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@7189 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 13 years ago
parent
commit
ab3db9e38b
  1. 6
      prism/src/explicit/ECComputerDefault.java

6
prism/src/explicit/ECComputerDefault.java

@ -95,10 +95,12 @@ public class ECComputerDefault extends ECComputer
*/
private List<BitSet> findEndComponents(BitSet states, BitSet filter) throws PrismException
{
// Initialise L with set of all states to look in
// Initialise L with set of all states to look in (if non-empty)
List<BitSet> L = new ArrayList<BitSet>();
if (states.cardinality() == 0)
return L;
L.add(states);
boolean changed = true;
while (changed) {
changed = false;

Loading…
Cancel
Save