| 126 | return graph->node_adjacency_first[node.idx]; |
| 127 | } |
| 128 | static inline bool node_adjacency_end(const struct arc arc) |
| 129 | { |
| 130 | return arc.idx == INVALID_INDEX; |
| 131 | } |
| 132 | static inline struct arc node_adjacency_next(const struct graph *graph, |
| 133 | const struct arc arc) |
| 134 | { |
no outgoing calls