diff --git a/prism/src/explicit/ECComputer.java b/prism/src/explicit/ECComputer.java index f9ac5172..24fd560b 100644 --- a/prism/src/explicit/ECComputer.java +++ b/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()}.