예제 #1
0
 public void addEdge(CGNode src, CGNode dst) {
   // we assume that this is called from ExplicitNode.addTarget().
   // so we only have to track the inverse edge.
   int x = getNumber(src);
   int y = getNumber(dst);
   predecessors.add(y, x);
 }
예제 #2
0
 protected void addEdge(int x, int y) {
   // we only have to track the inverse edge.
   predecessors.add(y, x);
 }