Skip to content

Commit

Permalink
remove keccak tables from berkeley columns
Browse files Browse the repository at this point in the history
  • Loading branch information
querolita committed Nov 1, 2023
1 parent cd71cdf commit 6287dd8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions kimchi/src/circuits/berkeley_columns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,16 +152,11 @@ impl<F: Copy, const COLUMNS: usize> ColumnEvaluations<F>
LookupKindIndex(LookupPattern::ForeignFieldMul) => self
.foreign_field_mul_lookup_selector
.ok_or(ExprError::MissingIndexEvaluation(col)),
LookupKindIndex(LookupPattern::KeccakRound) => self
.keccak_round_lookup_selector
.ok_or(ExprError::MissingIndexEvaluation(col)),
LookupKindIndex(LookupPattern::KeccakSponge) => self
.keccak_sponge_lookup_selector
.ok_or(ExprError::MissingIndexEvaluation(col)),
LookupRuntimeSelector => self
.runtime_lookup_table_selector
.ok_or(ExprError::MissingIndexEvaluation(col)),
Index(_) => Err(ExprError::MissingIndexEvaluation(col)),
LookupKindIndex(_) => Err(ExprError::MissingIndexEvaluation(col)),
}
}
}

0 comments on commit 6287dd8

Please sign in to comment.