Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
darth-cy committed Dec 9, 2024
1 parent 1a4fdb3 commit abef32a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions spartan_parallel/src/dense_mlpoly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,12 +322,14 @@ impl<S: SpartanExtensionField> PolyEvalProof<S> {
pub fn prove(
_poly: &DensePolynomial<S>,
_r: &[S], // point at which the polynomial is evaluated
_Zr: &S, // evaluation of \widetilde{Z}(r)
_Zr: &S, // evaluation of \widetilde{Z}(r)
_transcript: &mut Transcript,
_random_tape: &mut RandomTape<S>,
) -> PolyEvalProof<S> {
// TODO: Alternative evaluation proof scheme
PolyEvalProof { _phantom: S::field_zero() }
PolyEvalProof {
_phantom: S::field_zero(),
}
}

pub fn verify(
Expand Down Expand Up @@ -431,7 +433,9 @@ impl<S: SpartanExtensionField> PolyEvalProof<S> {
_random_tape: &mut RandomTape<S>,
) -> PolyEvalProof<S> {
// TODO: Alternative evaluation proof scheme
PolyEvalProof { _phantom: S::field_zero() }
PolyEvalProof {
_phantom: S::field_zero(),
}
}

pub fn verify_uni_batched_instances(
Expand Down

0 comments on commit abef32a

Please sign in to comment.