Skip to content

Commit

Permalink
o1vm/lookup_prover: to remove, make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbeunardeau88 committed Feb 5, 2025
1 parent cfe90f7 commit 039d27d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions o1vm/src/pickles/lookup_prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,27 @@ impl<X> IntoIterator for ColumnEnv<X> {
}

pub struct AllColumns<X> {
cols: ColumnEnv<X>,
t_1: X,
t_2: X,
_cols: ColumnEnv<X>,
_t_1: X,
_t_2: X,
}
pub struct Eval<F: PrimeField> {
zeta: AllColumns<F>,
zeta_omega: AllColumns<F>,
_zeta: AllColumns<F>,
_zeta_omega: AllColumns<F>,
}

pub struct Proof<G: KimchiCurve> {
//placeholder
a: G::ScalarField,
_a: G::ScalarField,
}

pub fn aux_prove<G: KimchiCurve, EFqSponge: FqSponge<G::BaseField, G, G::ScalarField> + Clone>(
input: AuxiliaryProofInput<G::ScalarField>,
srs: &SRS<G>,
domain: EvaluationDomains<G::ScalarField>,
mut fq_sponge: EFqSponge,
constraints: &[E<G::ScalarField>],
) -> {
_constraints: &[E<G::ScalarField>],
) {
let AuxiliaryProofInput {
wires,
arity,
Expand Down Expand Up @@ -137,5 +137,5 @@ pub fn aux_prove<G: KimchiCurve, EFqSponge: FqSponge<G::BaseField, G, G::ScalarF
.for_each(|com| absorb_commitment(&mut fq_sponge, &com));

// Constraints combiner
let alpha: G::ScalarField = fq_sponge.challenge();
let _alpha: G::ScalarField = fq_sponge.challenge();
}

0 comments on commit 039d27d

Please sign in to comment.