-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add function converting evaluations to coefficients (#125)
# Rationale for this change In order for the sumcheck verifier to be able to be verify proofs more efficiently (and for the sake of the solidity port, with less code), the proof should consist of polynomial coefficients rather than evaluations. This PR adds the code to make the conversion. A later PR will do the switch. # What changes are included in this PR? * A `interpolate_evaluations_to_reverse_coefficients` method is added. * Tests for this method are added. # Are these changes tested? Yes
- Loading branch information
1 parent
b9ef335
commit d4d239c
Showing
3 changed files
with
121 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters