Browse Source

imported patch predecessor-ECComputer.setPre.patch

tud-infrastructure-2018-10-12
Joachim Klein 7 years ago
parent
commit
c17d91c1e6
  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
{
protected PredecessorRelation pre;
/**
* Static method to create a new ECComputer object, depending on current settings.
*/
@ -55,6 +57,11 @@ public abstract class ECComputer extends PrismComponent
super(parent);
}
public void setPredecessorRelation(PredecessorRelation pre)
{
this.pre = pre;
}
/**
* Compute states of maximal end components (MECs) and store them.
* They can be retrieved using {@link #getMECStates()}.

Loading…
Cancel
Save