Browse Source

imported patch predecessor-ECComputer.setPre.patch

accumulation-v4.7
Joachim Klein 7 years ago
committed by Joachim Klein
parent
commit
dd9c794e34
  1. 7
      prism/src/explicit/ECComputer.java

7
prism/src/explicit/ECComputer.java

@ -38,6 +38,8 @@ import prism.PrismException;
*/ */
public abstract class ECComputer extends PrismComponent public abstract class ECComputer extends PrismComponent
{ {
protected PredecessorRelation pre;
/** /**
* Static method to create a new ECComputer object, depending on current settings. * Static method to create a new ECComputer object, depending on current settings.
*/ */
@ -55,6 +57,11 @@ public abstract class ECComputer extends PrismComponent
super(parent); super(parent);
} }
public void setPredecessorRelation(PredecessorRelation pre)
{
this.pre = pre;
}
/** /**
* Compute states of maximal end components (MECs) and store them. * Compute states of maximal end components (MECs) and store them.
* They can be retrieved using {@link #getMECStates()}. * They can be retrieved using {@link #getMECStates()}.

Loading…
Cancel
Save