Skip to content

Commit

Permalink
pub CircuitCost
Browse files Browse the repository at this point in the history
  • Loading branch information
CeciliaZ030 committed Oct 21, 2023
1 parent 9eaccbb commit 47caf7c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions halo2_proofs/src/dev/cost.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ use crate::{
#[derive(Debug)]
pub struct CircuitCost<G: PrimeGroup, ConcreteCircuit: Circuit<G::Scalar>> {
/// Power-of-2 bound on the number of rows in the circuit.
k: usize,
pub k: usize,
/// Maximum degree of the circuit.
max_deg: usize,
pub max_deg: usize,
/// Number of advice columns.
advice_columns: usize,
pub advice_columns: usize,
/// Number of direct queries for each column type.
instance_queries: usize,
advice_queries: usize,
fixed_queries: usize,
pub instance_queries: usize,
pub advice_queries: usize,
pub fixed_queries: usize,
/// Number of lookup arguments.
lookups: usize,
pub lookups: usize,
/// Number of columns in the global permutation.
permutation_cols: usize,
pub permutation_cols: usize,
/// Number of distinct sets of points in the multiopening argument.
point_sets: usize,
pub point_sets: usize,

_marker: PhantomData<(G, ConcreteCircuit)>,
}
Expand Down
Empty file added out.txt
Empty file.

0 comments on commit 47caf7c

Please sign in to comment.