-
Notifications
You must be signed in to change notification settings - Fork 94
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
MSM: use constant size witness and rename old witness in ProofInputs #1869
Conversation
56cb625
to
6d330b8
Compare
14e03b6
to
6464e67
Compare
6d330b8
to
988918e
Compare
988918e
to
5106f87
Compare
@@ -50,25 +51,24 @@ pub fn verify< | |||
let omega = domain.d1.group_gen; | |||
let zeta_omega = zeta * omega; | |||
|
|||
let mut es: Vec<_> = zeta_evaluations | |||
let mut es: Vec<Vec<Vec<G::ScalarField>>> = zeta_evaluations |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will change the type later. But it does imply changes outside the scope of this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A lot of this stuff is very directly conflicting with my PR :( Would be nice to avoid code duplication in the future.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Except for minor rename, looks very nice!
Depends on: