Class EfficientTreeWalk


  • public abstract class EfficientTreeWalk
    extends java.lang.Object
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract void nodeEntered​(IvMTrace trace, int node, int eventIndex)
      Called whenever a node is entered.
      abstract void nodeExecuted​(IvMTrace trace, int node, int startEventIndex, int lastEventIndex)
      Called whenever the execution of a node is completed.
      void walk​(org.processmining.plugins.InductiveMiner.efficienttree.EfficientTree tree, IvMTrace trace)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EfficientTreeWalk

        public EfficientTreeWalk()
    • Method Detail

      • walk

        public void walk​(org.processmining.plugins.InductiveMiner.efficienttree.EfficientTree tree,
                         IvMTrace trace)
      • nodeEntered

        public abstract void nodeEntered​(IvMTrace trace,
                                         int node,
                                         int eventIndex)
        Called whenever a node is entered. Parents are entered before their children.
        Parameters:
        trace -
        node -
        eventIndex -
      • nodeExecuted

        public abstract void nodeExecuted​(IvMTrace trace,
                                          int node,
                                          int startEventIndex,
                                          int lastEventIndex)
        Called whenever the execution of a node is completed. Parents are reported after their children.
        Parameters:
        trace -
        node -
        startEventIndex - (inclusive)
        lastEventIndex - (inclusive)