Skip to content

Commit

Permalink
Update component.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjl10 authored Jan 16, 2025
1 parent 438c107 commit fb99d57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/prover/src/constraint_framework/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl TraceLocationAllocator {
}

/// Create a new `TraceLocationAllocator` with fixed preprocessed columns setup.
pub fn new_with_preproccessed_columns(preprocessed_columns: &[PreProcessedColumnId]) -> Self {
pub fn new_with_preprocessed_columns(preprocessed_columns: &[PreProcessedColumnId]) -> Self {
assert!(
preprocessed_columns.iter().all_unique(),
"Duplicate preprocessed columns are not allowed!"
Expand Down Expand Up @@ -213,7 +213,7 @@ impl<E: FrameworkEval> Component for FrameworkComponent<E> {
})
}

fn preproccessed_column_indices(&self) -> ColumnVec<usize> {
fn preprocessed_column_indices(&self) -> ColumnVec<usize> {
self.preprocessed_column_indices.clone()
}

Expand Down

0 comments on commit fb99d57

Please sign in to comment.