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
Here's an example, seems to be the case for various integer/bit combinations of i32 and i64s:
use cordic;
use fixed;
type Ftype = fixed::types::I16F16;
type Itype = i32;
fn main() {
// ok
let x = Ftype::from_bits (Itype::MAX/2);
dbg!(x);
dbg!(cordic::sqrt (x));
// thread 'main' panicked at 'overflow'
let x = Ftype::from_bits (Itype::MAX/2 + 1);
dbg!(x);
dbg!(cordic::sqrt (x));
}
Here's an example, seems to be the case for various integer/bit combinations of i32 and i64s:
Backtrace points to fixed mul on src/lib.rs:213
The text was updated successfully, but these errors were encountered: