| 77 | int64_t maxArcId() const { return _arc_num - 1; } |
| 78 | |
| 79 | Node source(Arc arc) const { return arc / _n2; } |
| 80 | Node target(Arc arc) const { return (arc % _n2) + _n1; } |
| 81 | |
| 82 | static int id(Node node) { return node; } |
no outgoing calls
no test coverage detected