Skip to content

Commit

Permalink
Merge branch 'feat/goldilocks-spartan' into feat/basefield_backing_ob…
Browse files Browse the repository at this point in the history
…jects
  • Loading branch information
darth-cy committed Dec 10, 2024
2 parents 8ff1852 + 781a290 commit cee5800
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions spartan_parallel/src/dense_mlpoly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,13 +349,18 @@ impl<S: SpartanExtensionField> PolyEvalProof<S> {
PolyEvalProof {
_phantom: S::field_zero(),
}
// TODO: Alternative evaluation proof scheme
PolyEvalProof {
_phantom: S::field_zero(),
}
}

pub fn verify(
&self,
transcript: &mut Transcript,
r: &[S], // point at which the polynomial is evaluated
) -> Result<(), ProofVerifyError> {
// TODO: Alternative evaluation proof scheme
// TODO: Alternative evaluation proof scheme
Ok(())
}
Expand All @@ -379,13 +384,19 @@ impl<S: SpartanExtensionField> PolyEvalProof<S> {
) -> Vec<PolyEvalProof<S>> {
// TODO: Alternative evaluation proof scheme
vec![]
// TODO: Alternative evaluation proof scheme
vec![]
}

pub fn verify_plain_batched_points(
_proof_list: &Vec<PolyEvalProof<S>>,
_transcript: &mut Transcript,
_r_list: Vec<Vec<S>>, // point at which the polynomial is evaluated
_Zr_list: Vec<S>, // commitment to \widetilde{Z}(r) on each point
_proof_list: &Vec<PolyEvalProof<S>>,
_transcript: &mut Transcript,
_r_list: Vec<Vec<S>>, // point at which the polynomial is evaluated
_Zr_list: Vec<S>, // commitment to \widetilde{Z}(r) on each point
) -> Result<(), ProofVerifyError> {
// TODO: Alternative evaluation proof scheme
Ok(())
Expand Down

0 comments on commit cee5800

Please sign in to comment.