package tfm.arcs.pdg; import tfm.arcs.Arc; import tfm.graphs.pdg.PDG; import tfm.graphs.sdg.SDG; /** * An arc used in the {@link PDG} and {@link SDG} * used to represent control dependence between two nodes. The traditional definition of * control dependence is: a node {@code a} is control dependent on node * {@code b} if and only if {@code b} alters the number of times {@code a} is executed. */ public class ControlDependencyArc extends Arc { }