Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
iquerejeta committed Dec 19, 2024
1 parent 428128c commit ddcb294
Show file tree
Hide file tree
Showing 28 changed files with 684 additions and 1,064 deletions.
2 changes: 1 addition & 1 deletion benches/plonk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ use std::marker::PhantomData;

use criterion::{BenchmarkId, Criterion};
use halo2_proofs::poly::kzg::{params::ParamsKZG, KZGCommitmentScheme};
use halo2_proofs::utils::rational::Rational;
use halo2_proofs::transcript::{CircuitTranscript, Transcript};
use halo2_proofs::utils::rational::Rational;

fn criterion_benchmark(c: &mut Criterion) {
/// This represents an advice column at a certain row in the ConstraintSystem
Expand Down
2 changes: 1 addition & 1 deletion examples/proof-size.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const K: u32 = 11;
fn main() {
let circuit = TestCircuit {};

let model = from_circuit_to_model_circuit::<_, _, 56, 56>(
let model = from_circuit_to_model_circuit::<_, _, 32, 32>(
Some(K),
&circuit,
vec![],
Expand Down
346 changes: 0 additions & 346 deletions examples/shuffle.rs

This file was deleted.

2 changes: 1 addition & 1 deletion examples/simple-example.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use std::marker::PhantomData;

use halo2_proofs::{
utils::arithmetic::Field,
circuit::{AssignedCell, Chip, Layouter, Region, SimpleFloorPlanner, Value},
plonk::{Advice, Circuit, Column, ConstraintSystem, Error, Fixed, Instance, Selector},
poly::Rotation,
utils::arithmetic::Field,
};

// ANCHOR: instructions
Expand Down
2 changes: 1 addition & 1 deletion examples/two-chip.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use std::marker::PhantomData;

use halo2_proofs::{
utils::arithmetic::Field,
circuit::{AssignedCell, Chip, Layouter, Region, SimpleFloorPlanner, Value},
plonk::{Advice, Circuit, Column, ConstraintSystem, Error, Instance, Selector},
poly::Rotation,
utils::arithmetic::Field,
};

// ANCHOR: field-instructions
Expand Down
Loading

0 comments on commit ddcb294

Please sign in to comment.