Path maximum for capacity pointer structure
| 576 | } |
| 577 | /// Path maximum for capacity pointer structure |
| 578 | forceinline int |
| 579 | pathmax_t(const HallInfo hall[], int i) { |
| 580 | while (hall[i].t > i) { |
| 581 | i = hall[i].t; |
| 582 | } |
| 583 | return i; |
| 584 | } |
| 585 | /// Path maximum for stable set pointer structure |
| 586 | forceinline int |
| 587 | pathmax_s(const HallInfo hall[], int i) { |