Path minimum for capacity pointer structure
| 553 | } |
| 554 | /// Path minimum for capacity pointer structure |
| 555 | forceinline int |
| 556 | pathmin_t(const HallInfo hall[], int i) { |
| 557 | while (hall[i].t < i) |
| 558 | i = hall[i].t; |
| 559 | return i; |
| 560 | } |
| 561 | //@} |
| 562 | |
| 563 | /** |