Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions benches/multi_stark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
//! `TEXRAY_PREFIXES=` (empty) to also render Plonky3's internal spans.

use criterion::{BenchmarkId, Criterion, criterion_group};
use multi_stark::builder::symbolic::{SymbolicExpression, preprocessed_var, var};
use multi_stark::lookup::{Lookup, LookupAir};
use multi_stark::lookup::Lookup;
use multi_stark::p3_adapter::{LookupAir, SymbolicExpression, preprocessed_var, var};
use multi_stark::system::{ProverKey, System, SystemWitness};
use multi_stark::types::{CommitmentParameters, FriParameters, GoldilocksBlake3Config, Val};
use multi_stark::{
Expand Down Expand Up @@ -168,10 +168,7 @@ impl U32CS {
// Witness generation
// ---------------------------------------------------------------------------

fn build_witness(
num_adds: usize,
system: &System<GoldilocksBlake3Config, U32CS>,
) -> SystemWitness<Val> {
fn build_witness(num_adds: usize, system: &System<GoldilocksBlake3Config>) -> SystemWitness<Val> {
let byte_width = 1;
let add_width = 14;
let add_height = num_adds.next_power_of_two();
Expand Down Expand Up @@ -261,7 +258,7 @@ fn bench_config() -> GoldilocksBlake3Config {
}

fn build_system() -> (
System<GoldilocksBlake3Config, U32CS>,
System<GoldilocksBlake3Config>,
ProverKey<GoldilocksBlake3Config>,
) {
let byte_table = LookupAir::new(U32CS::ByteTable, U32CS::ByteTable.lookups());
Expand Down
4 changes: 2 additions & 2 deletions examples/lookup_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
//! cargo run --example lookup_proof --release
//! ```

use multi_stark::builder::symbolic::{SymbolicExpression, var};
use multi_stark::lookup::{Lookup, LookupAir};
use multi_stark::lookup::Lookup;
use multi_stark::p3_adapter::{LookupAir, SymbolicExpression, var};
use multi_stark::system::{System, SystemWitness};
use multi_stark::types::{CommitmentParameters, FriParameters, GoldilocksBlake3Config, Val};
use multi_stark::{
Expand Down
4 changes: 2 additions & 2 deletions examples/preprocessed_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
//! cargo run --example preprocessed_proof --release
//! ```

use multi_stark::builder::symbolic::{SymbolicExpression, preprocessed_var, var};
use multi_stark::lookup::{Lookup, LookupAir};
use multi_stark::lookup::Lookup;
use multi_stark::p3_adapter::{LookupAir, SymbolicExpression, preprocessed_var, var};
use multi_stark::system::{System, SystemWitness};
use multi_stark::types::{CommitmentParameters, FriParameters, GoldilocksBlake3Config, Val};
use multi_stark::{
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//! cargo run --example simple_proof --release
//! ```

use multi_stark::lookup::LookupAir;
use multi_stark::p3_adapter::LookupAir;
use multi_stark::system::{System, SystemWitness};
use multi_stark::types::{CommitmentParameters, FriParameters, GoldilocksBlake3Config, Val};
use multi_stark::{
Expand Down
188 changes: 0 additions & 188 deletions src/builder/check.rs

This file was deleted.

Loading