Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosma committed Sep 10, 2024
1 parent 4d6de63 commit 60ea85c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions ceno_zkvm/src/instructions/riscv/blt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ mod test {
use goldilocks::GoldilocksExt2;
use itertools::Itertools;
use multilinear_extensions::mle::IntoMLEs;
use std::array;
use rand::rngs::OsRng;
use std::array;

use crate::{circuit_builder::ConstraintSystem, scheme::mock_prover::MockProver};

Expand All @@ -261,7 +261,7 @@ mod test {
.unwrap();

let rng = OsRng;
let challenges: [GoldilocksExt2;2] = array::from_fn(|_| GoldilocksExt2::random(rng));
let challenges: [GoldilocksExt2; 2] = array::from_fn(|_| GoldilocksExt2::random(rng));
MockProver::run(
&mut circuit_builder,
&raw_witin
Expand All @@ -271,7 +271,8 @@ mod test {
.map(|v| v.into())
.collect_vec(),
Some(challenges),
).unwrap();
)
.unwrap();
Ok(())
}

Expand Down
1 change: 0 additions & 1 deletion ceno_zkvm/src/scheme/mock_prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,6 @@ pub fn load_u16_table<E: ExtensionField>(
}
}


pub fn load_and_table<E: ExtensionField>(
t_vec: &mut Vec<E>,
cb: &CircuitBuilder<E>,
Expand Down

0 comments on commit 60ea85c

Please sign in to comment.