A control dependency links a vertex to the control flow element which
may have an influence on its execution.
Within if(p) a else b, a and b have a control dependency on the if (which in turn decides based on p).
See
happensInEveryBranch - to check whether a list of control dependencies is exhaustive
A control dependency links a vertex to the control flow element which may have an influence on its execution. Within
if(p) a else b
,a
andb
have a control dependency on theif
(which in turn decides based onp
).See
happensInEveryBranch - to check whether a list of control dependencies is exhaustive