fixed crate does it like this

This commit is contained in:
Quaternions 2024-08-23 15:23:40 -07:00
parent 73e8afbc77
commit 3b7fbe4038
2 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
pub type I256F128=crate::wide::FixedI256<typenum::consts::U128>;
pub type I512F256=crate::wide::FixedI512<typenum::consts::U256>;
pub type I128F128=crate::wide::FixedI256<typenum::consts::U128>;
pub type I256F256=crate::wide::FixedI512<typenum::consts::U256>;

View File

@ -2,8 +2,8 @@ use fixed_wide::wide::WideMul;
type Planar64=fixed::types::I32F32;
type Planar64Wide1=fixed::types::I64F64;
type Planar64Wide2=fixed_wide::types::I256F128;
type Planar64Wide3=fixed_wide::types::I512F256;
type Planar64Wide2=fixed_wide::types::I128F128;
type Planar64Wide3=fixed_wide::types::I256F256;
#[cfg(test)]
mod tests {