예제 #1
0
파일: Graph.java 프로젝트: safdariqbal/frex
 protected int numTouched() {
   int c = 0;
   for (Node node : nodes) if (node.isRep() && node.isTouched()) c++;
   return c;
 }