Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor CTL Handling #1629

Merged
merged 8 commits into from
Oct 9, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix clippy
  • Loading branch information
sai-deng committed Oct 5, 2024
commit 8463effe0dd1472a52906cd12ffb047885db42ee
2 changes: 1 addition & 1 deletion starky/src/cross_table_lookup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ impl<'a, F: Field> CtlZData<'a, F> {
}
}

impl<'a, F: Field> CtlData<'a, F> {
impl<F: Field> CtlData<'_, F> {
/// Returns all the cross-table lookup helper polynomials.
pub(crate) fn ctl_helper_polys(&self) -> Vec<PolynomialValues<F>> {
let num_polys = self
Expand Down