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
for _ in 0..val.to_i8().expect("specified iteration count is too large")
Specifically, the iteration count gets converted to an i8, whose max value is 2^7-1 = 127. You can try replacing to_i8 with to_u8 to double the limit, or go higher with to_i16 or to_u16, and let us know how that works out.
Is there some way around this error?
The bound seems to be very small (127). I want much bigger bounds.
The text was updated successfully, but these errors were encountered: