Exemplo n.º 1
0
 public CFGEdge AddEdge(CFGNode source, CFGNode target, BranchCondition condition)
 {
     CFGEdge edge = (CFGEdge)base.AddEdge(source, target);
     edge.BranchCondition = condition;
     return edge;
 }
Exemplo n.º 2
0
 public CFGEdge AddEdge(CFGNodeCluster sourceCluster, CFGNodeCluster targetCluster, BranchCondition condition)
 {
     return AddEdge(sourceCluster.End, targetCluster.Start, condition);
 }