From 67622334e70d133c17441e27d019747199b0cda9 Mon Sep 17 00:00:00 2001 From: Ary Borenszweig Date: Fri, 28 Mar 2025 14:32:09 -0300 Subject: [PATCH] Remove unused generic --- src/fns/unconstrained_ops.nr | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/fns/unconstrained_ops.nr b/src/fns/unconstrained_ops.nr index 25e26de1..f5670c8b 100644 --- a/src/fns/unconstrained_ops.nr +++ b/src/fns/unconstrained_ops.nr @@ -358,10 +358,7 @@ pub(crate) unconstrained fn __tonelli_shanks_sqrt result } -pub(crate) unconstrained fn __gte( - lhs: [u128; N], - rhs: [u128; N], -) -> bool { +pub(crate) unconstrained fn __gte(lhs: [u128; N], rhs: [u128; N]) -> bool { let mut result = false; let mut early_exit = false; for i in 0..(N) {