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

feat: generic const expr #854

Merged
merged 7 commits into from
May 31, 2024
Merged

feat: generic const expr #854

merged 7 commits into from
May 31, 2024

Conversation

ratankaliani
Copy link
Member

@ratankaliani ratankaliani commented May 31, 2024

Removes the dependency on generic const expressions.

@ratankaliani ratankaliani changed the base branch from main to dev May 31, 2024 03:15
pad_rows(&mut rows, || {
let mut row = [F::zero(); num_weierstrass_add_cols::<E::BaseField>()];
pad_rows_vec(&mut rows, || {
let mut row = Vec::new();
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do this instead:

let row = vec![E::BaseField::zero(); num_weierstrass_add_cols::<E::BaseField>()];

@ctian1 ctian1 merged commit 27c1741 into dev May 31, 2024
5 checks passed
@ctian1 ctian1 deleted the chris/fix-const-generic-expr branch May 31, 2024 04:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants