mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-02-11 17:33:08 +00:00
fmt
This commit is contained in:
parent
12d5239be6
commit
a89b306cf8
@ -95,7 +95,11 @@ impl<F: RichField + Extendable<D>, const D: usize> CircuitBuilder<F, D> {
|
||||
AffinePointTarget { x: x3, y: y3 }
|
||||
}
|
||||
|
||||
pub fn curve_repeated_double<C: Curve>(&mut self, p: &AffinePointTarget<C>, n: usize) -> AffinePointTarget<C> {
|
||||
pub fn curve_repeated_double<C: Curve>(
|
||||
&mut self,
|
||||
p: &AffinePointTarget<C>,
|
||||
n: usize,
|
||||
) -> AffinePointTarget<C> {
|
||||
let mut result = p.clone();
|
||||
|
||||
for _ in 0..n {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user