Helper function. * Is this the end of the adjacency list. */
| 429 | /* Helper function. |
| 430 | * Is this the end of the adjacency list. */ |
| 431 | static bool node_adjacency_end(const struct arc arc) |
| 432 | { |
| 433 | return arc.idx == INVALID_INDEX; |
| 434 | } |
| 435 | |
| 436 | /* Helper function. |
| 437 | * Given node idx `node` and `arc`, returns the idx of the next arc whose tail is `node`. */ |
no outgoing calls
no test coverage detected