All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jbpt.petri.wftree.WFTree Maven / Gradle / Ivy

Go to download

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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy