Debugging utility to find a Node by index
(int nid)
| 716 | * Debugging utility to find a Node by index |
| 717 | */ |
| 718 | public Node find(int nid) { return _find(nid, new BitSet()); } |
| 719 | private Node _find(int nid, BitSet bs) { |
| 720 | if( bs.get(_nid) ) return null; // Been there, done that |
| 721 | bs.set(_nid); |
no test coverage detected