You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix arithmetic overflow in next_match/next_match_back Kani abstractions
Replace kani::assume(a + w <= finger_back) with the overflow-safe form:
assume a <= finger_back then w <= finger_back - a. This prevents usize
overflow when a and w are both symbolic values (kani::any()).
0 commit comments