Skip to content

Commit

Permalink
Remove interaction_elements_ids from Component trait.
Browse files Browse the repository at this point in the history
  • Loading branch information
alonh5 committed Jul 8, 2024
1 parent 70c76e0 commit db449ac
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 28 deletions.
3 changes: 0 additions & 3 deletions crates/prover/src/core/air/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@ pub trait Component {
point: CirclePoint<SecureField>,
) -> TreeVec<ColumnVec<Vec<CirclePoint<SecureField>>>>;

/// Returns the ids of the interaction elements used by the component.
fn interaction_element_ids(&self) -> Vec<String>;

/// Evaluates the constraint quotients combination of the component at a point.
fn evaluate_constraint_quotients_at_point(
&self,
Expand Down
4 changes: 0 additions & 4 deletions crates/prover/src/core/prover/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,10 +438,6 @@ mod tests {
TreeVec::new(vec![vec![vec![point]]])
}

fn interaction_element_ids(&self) -> Vec<String> {
vec![]
}

fn evaluate_constraint_quotients_at_point(
&self,
_point: CirclePoint<SecureField>,
Expand Down
4 changes: 0 additions & 4 deletions crates/prover/src/examples/fibonacci/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,6 @@ impl Component for FibonacciComponent {
)])
}

fn interaction_element_ids(&self) -> Vec<String> {
vec![]
}

fn evaluate_constraint_quotients_at_point(
&self,
point: CirclePoint<SecureField>,
Expand Down
4 changes: 0 additions & 4 deletions crates/prover/src/examples/poseidon/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,6 @@ impl Component for PoseidonComponent {
)])
}

fn interaction_element_ids(&self) -> Vec<String> {
vec![]
}

fn evaluate_constraint_quotients_at_point(
&self,
point: CirclePoint<SecureField>,
Expand Down
8 changes: 4 additions & 4 deletions crates/prover/src/examples/wide_fibonacci/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ impl WideFibComponent {
N_COLUMNS
}

pub fn interaction_element_ids(&self) -> Vec<String> {
vec![ALPHA_ID.to_string(), Z_ID.to_string()]
}

fn evaluate_trace_boundary_constraints_at_point(
&self,
point: CirclePoint<SecureField>,
Expand Down Expand Up @@ -220,10 +224,6 @@ impl Component for WideFibComponent {
])
}

fn interaction_element_ids(&self) -> Vec<String> {
vec![ALPHA_ID.to_string(), Z_ID.to_string()]
}

fn evaluate_constraint_quotients_at_point(
&self,
point: CirclePoint<SecureField>,
Expand Down
6 changes: 1 addition & 5 deletions crates/prover/src/examples/wide_fibonacci/simd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use crate::core::poly::circle::{CanonicCoset, CircleEvaluation};
use crate::core::poly::BitReversedOrder;
use crate::core::prover::BASE_TRACE;
use crate::core::{ColumnVec, InteractionElements, LookupValues};
use crate::examples::wide_fibonacci::component::{ALPHA_ID, N_COLUMNS, Z_ID};
use crate::examples::wide_fibonacci::component::N_COLUMNS;
use crate::trace_generation::registry::ComponentGenerationRegistry;
use crate::trace_generation::{AirTraceGenerator, AirTraceVerifier, ComponentTraceGenerator};

Expand Down Expand Up @@ -112,10 +112,6 @@ impl Component for SimdWideFibComponent {
)])
}

fn interaction_element_ids(&self) -> Vec<String> {
vec![ALPHA_ID.to_string(), Z_ID.to_string()]
}

fn evaluate_constraint_quotients_at_point(
&self,
point: CirclePoint<SecureField>,
Expand Down
4 changes: 0 additions & 4 deletions crates/prover/src/trace_generation/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@ mod tests {
todo!()
}

fn interaction_element_ids(&self) -> Vec<String> {
todo!()
}

fn evaluate_constraint_quotients_at_point(
&self,
_point: CirclePoint<SecureField>,
Expand Down

0 comments on commit db449ac

Please sign in to comment.