| 114 | ) const { return in_edge_iterator(it, g.node(it).number_of_parents()); } |
| 115 | |
| 116 | unsigned long node_id ( |
| 117 | const out_edge_iterator& it |
| 118 | ) const { return g.node(it.idx).child(it.cnt).index(); } |
| 119 | unsigned long node_id ( |
| 120 | const in_edge_iterator& it |
| 121 | ) const { return g.node(it.idx).parent(it.cnt).index(); } |
no test coverage detected