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