From 8bee3c7eff49e2ade07e734e194b6109e52bb8e7 Mon Sep 17 00:00:00 2001 From: Mizar Date: Sat, 23 Aug 2025 17:43:47 +0900 Subject: [PATCH 1/2] fix: Remove commented-out `modulus!` macro invocation in tests --- src/convolution.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/convolution.rs b/src/convolution.rs index c6da121..7b40719 100644 --- a/src/convolution.rs +++ b/src/convolution.rs @@ -536,7 +536,7 @@ mod tests { const M1M3: u64 = M1 * M3; const M1M2: u64 = M1 * M2; - modulus!(M1, M2, M3); + // modulus!(M1, M2, M3); for i in -1000..=1000 { let a = vec![0u64.wrapping_sub(M1M2 + M1M3 + M2M3) as i64 + i]; From 8267f38643c36fa1b797e1cb12d81ed5dcf6c9e8 Mon Sep 17 00:00:00 2001 From: Mizar Date: Sat, 23 Aug 2025 17:48:56 +0900 Subject: [PATCH 2/2] fix: Remove commented-out `modulus!` macro invocation in tests --- src/convolution.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/convolution.rs b/src/convolution.rs index 7b40719..4aa829e 100644 --- a/src/convolution.rs +++ b/src/convolution.rs @@ -536,8 +536,6 @@ mod tests { const M1M3: u64 = M1 * M3; const M1M2: u64 = M1 * M2; - // modulus!(M1, M2, M3); - for i in -1000..=1000 { let a = vec![0u64.wrapping_sub(M1M2 + M1M3 + M2M3) as i64 + i]; let b = vec![1];