mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-07 08:13:11 +00:00
fix
This commit is contained in:
parent
23cfe91079
commit
8bab62b83d
@ -20,8 +20,7 @@ impl<F: RichField + Extendable<D>, const D: usize> CircuitBuilder<F, D> {
|
||||
&mut self,
|
||||
p: &AffinePointTarget<C>,
|
||||
) -> Vec<AffinePointTarget<C>> {
|
||||
let mut multiples = Vec::new();
|
||||
multiples.push(self.constant_affine_point(C::GENERATOR_AFFINE));
|
||||
let mut multiples = vec![self.constant_affine_point(C::GENERATOR_AFFINE)];
|
||||
let mut cur = p.clone();
|
||||
for _pow in 0..WINDOW_SIZE {
|
||||
for existing in multiples.clone() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user