예제 #1
0
 public void removeEdge(CGNode src, CGNode dst) {
   int x = getNumber(src);
   int y = getNumber(dst);
   predecessors.remove(y, x);
 }