mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-11 10:13:09 +00:00
minor
This commit is contained in:
parent
73ab11f420
commit
9547aa6382
@ -363,8 +363,9 @@ pub(crate) fn eval_vanishing_poly_recursively<F: Extendable<D>, const D: usize>(
|
||||
.chunks(max_degree)
|
||||
.zip(partial_product_check.iter_mut())
|
||||
.for_each(|(d, q)| {
|
||||
let tmp = builder.mul_many_extension(d);
|
||||
*q = builder.mul_extension(*q, tmp);
|
||||
let mut v = d.to_vec();
|
||||
v.push(*q);
|
||||
*q = builder.mul_many_extension(&v);
|
||||
});
|
||||
vanishing_partial_products_terms.extend(partial_product_check);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user