Skip to content

Commit 60c7dd7

Browse files
authored
Fix pre_eq_reduce (#17)
* Fix pre_eq_reduce The pre_eq_reduce should directly reduce the value to the normal form rather than checking it. * fmt
1 parent 1a04adb commit 60c7dd7

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/reduce.rs

+1-10
Original file line numberDiff line numberDiff line change
@@ -178,20 +178,11 @@ impl<TargetField: PrimeField, BaseField: PrimeField> Reducer<TargetField, BaseFi
178178
pub fn pre_eq_reduce(
179179
elem: &mut AllocatedNonNativeFieldVar<TargetField, BaseField>,
180180
) -> R1CSResult<()> {
181-
let cs = elem.cs.clone();
182-
let params = get_params::<TargetField, BaseField>(&cs);
183-
184181
if elem.is_in_the_normal_form {
185182
return Ok(());
186183
}
187184

188-
let log = overhead!(elem.num_of_additions_over_normal_form + BaseField::one()) + 1;
189-
190-
if BaseField::size_in_bits() > params.bits_per_limb + log + 1 {
191-
Ok(())
192-
} else {
193-
Self::reduce(elem)
194-
}
185+
Self::reduce(elem)
195186
}
196187

197188
/// Group and check equality

0 commit comments

Comments
 (0)