| 466 | } |
| 467 | |
| 468 | u64 flow_delay(const struct flow *flow) |
| 469 | { |
| 470 | u64 delay = 0; |
| 471 | for (size_t i = 0; i < tal_count(flow->path); i++) |
| 472 | delay += flow_edge(flow, i)->delay; |
| 473 | return delay; |
| 474 | } |
| 475 | |
| 476 | u64 flows_worst_delay(struct flow **flows) |
| 477 | { |
no test coverage detected