Skip to content
ControlDependencyArc.java 433 B
Newer Older
Javier Costa's avatar
Javier Costa committed
package tfm.arcs.pdg;
Javier Costa's avatar
Javier Costa committed

Javier Costa's avatar
Javier Costa committed
import tfm.arcs.Arc;
Javier Costa's avatar
Javier Costa committed

 * An arc used in the {@link tfm.graphs.PDG} and {@link tfm.graphs.SDG}
 * used to represent control dependence between two nodes. The traditional definition of
 * control dependence is: a node {@code a} is <it>control dependent</it> on node
 * {@code b} if and only if {@code b} alters the number of times {@code a} is executed.
 */
Javier Costa's avatar
Javier Costa committed
public class ControlDependencyArc extends Arc {
Javier Costa's avatar
Javier Costa committed
}