org.jbpt.petri.wftree.WFTree Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbpt-petri Show documentation
Show all versions of jbpt-petri Show documentation
The jBPT code library is a compendium of technologies that support research on design, execution, and evaluation of business processes.
The newest version!
package org.jbpt.petri.wftree;
import org.jbpt.petri.Flow;
import org.jbpt.petri.IPetriNet;
import org.jbpt.petri.Node;
import org.jbpt.petri.Place;
import org.jbpt.petri.Transition;
/**
* This class takes a net and computes its WF-tree.
*
* WF-tree was proposed in:
* Matthias Weidlich, Artem Polyvyanyy, Jan Mendling, and Mathias Weske.
* Causal Behavioural Profiles - Efficient Computation, Applications, and Evaluation.
* Fundamenta Informaticae (FUIN) 113(3-4): 399-435 (2011)
*
* @author Artem Polyvyanyy
* @author Matthias Weidlich
*/
public class WFTree extends AbstractWFTree {
public WFTree(IPetriNet net) {
super(net);
}
}