| 63 | return graph->max_num_arcs; |
| 64 | } |
| 65 | static inline size_t graph_max_num_nodes(const struct graph *graph) |
| 66 | { |
| 67 | return graph->max_num_nodes; |
| 68 | } |
| 69 | |
| 70 | /* Give me the dual of an arc. */ |
| 71 | static inline struct arc arc_dual(const struct graph *graph, struct arc arc) |
no outgoing calls
no test coverage detected