Debugging utility to find a Node by index
(int nid)
| 724 | * Debugging utility to find a Node by index |
| 725 | */ |
| 726 | public Node find(int nid) { return _find(nid, new BitSet()); } |
| 727 | private Node _find(int nid, BitSet bs) { |
| 728 | if( bs.get(_nid) ) return null; // Been there, done that |
| 729 | bs.set(_nid); |
no test coverage detected