Class POSyncReplayResult
- java.lang.Object
-
- org.processmining.plugins.replayer.replayresult.SyncReplayResult
-
- org.processmining.partialorder.models.replay.POSyncReplayResult
-
public class POSyncReplayResult extends org.processmining.plugins.replayer.replayresult.SyncReplayResultExtended class of SyncReplayResult to include information that is needed to compute partially ordered alignment- Added: a list "indices" from a move in alignment to the corresponding index in the trace.
- Added: the alignment graph of
PartialOrderGraph - Added: the unfolded petrinet of
POAlignmtUnfoldedNet - Added: the synchronous product of
SyncProductModel - Added: the partially ordered trace
PTrace
- Author:
- xlu
-
-
Constructor Summary
Constructors Constructor Description POSyncReplayResult(java.util.List<java.lang.Object> nodeInstance, java.util.List<org.processmining.plugins.petrinet.replayresult.StepTypes> stepTypes, int traceIndex, gnu.trove.list.TIntList indeces)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description gnu.trove.list.TIntListgetIndeces()PAlignmentgetPOAlignmentGraph()PTracegetPotrace()SyncProductModelgetSyncModel()POAlignmtUnfoldedNetgetUnfoldednet()voidsetGraph(PAlignment graph)voidsetIndeces(gnu.trove.list.TIntList indeces)voidsetPotrace(PTrace potrace)voidsetSyncModel(SyncProductModel syncModel)voidsetUnfoldednet(POAlignmtUnfoldedNet unfoldednet)
-
-
-
Method Detail
-
getIndeces
public gnu.trove.list.TIntList getIndeces()
- Returns:
- a list "indeces" of int, with size of the alignment. indeces[i] >= 0 gives the corresponding index of the move in the original trace. indeces[i] < 0 indicates a model move.
-
setIndeces
public void setIndeces(gnu.trove.list.TIntList indeces)
-
getPOAlignmentGraph
public PAlignment getPOAlignmentGraph()
-
setGraph
public void setGraph(PAlignment graph)
-
getUnfoldednet
public POAlignmtUnfoldedNet getUnfoldednet()
-
setUnfoldednet
public void setUnfoldednet(POAlignmtUnfoldedNet unfoldednet)
-
getSyncModel
public SyncProductModel getSyncModel()
-
setSyncModel
public void setSyncModel(SyncProductModel syncModel)
-
getPotrace
public PTrace getPotrace()
-
setPotrace
public void setPotrace(PTrace potrace)
-
-