From 3b7fbe4038b1125cf1d47feafec8ee9e2a5247f1 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Fri, 23 Aug 2024 15:23:40 -0700 Subject: [PATCH] fixed crate does it like this --- fixed_wide/src/types.rs | 4 ++-- src/lib.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fixed_wide/src/types.rs b/fixed_wide/src/types.rs index 37ba47f..ef49abb 100644 --- a/fixed_wide/src/types.rs +++ b/fixed_wide/src/types.rs @@ -1,2 +1,2 @@ -pub type I256F128=crate::wide::FixedI256; -pub type I512F256=crate::wide::FixedI512; +pub type I128F128=crate::wide::FixedI256; +pub type I256F256=crate::wide::FixedI512; diff --git a/src/lib.rs b/src/lib.rs index 9e67f80..1d4be86 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 {