-
Notifications
You must be signed in to change notification settings - Fork 36
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
Spartan: Use PowPolynomial
for tau
polynomials
#155
Comments
huitseeker
added a commit
to huitseeker/arecibo
that referenced
this issue
Feb 23, 2024
- Imported and implemented `PowPolynomial` into `src/spartan/snark.rs`, - Simplified and optimized `tau` variable generation using `PowPolynomial`, decreasing the transcript use, - Adjusted `tau` variable generation method in `prove` and `verify` functions Fixes lurk-lang#155
huitseeker
added a commit
to huitseeker/arecibo
that referenced
this issue
Feb 24, 2024
- Imported and implemented `PowPolynomial` into `src/spartan/snark.rs`, - Simplified and optimized `tau` variable generation using `PowPolynomial`, decreasing the transcript use, - Adjusted `tau` variable generation method in `prove` and `verify` functions Fixes lurk-lang#155
github-merge-queue bot
pushed a commit
that referenced
this issue
Feb 24, 2024
- Imported and implemented `PowPolynomial` into `src/spartan/snark.rs`, - Simplified and optimized `tau` variable generation using `PowPolynomial`, decreasing the transcript use, - Adjusted `tau` variable generation method in `prove` and `verify` functions Fixes #155
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The current implementation samples
log(n)
challenges to construct theEqPolynomial
. It was noticed that only 1 challenge is necessary since we can take thelog(n)
square powers:tau, tau^2, ..., tau^{2^{log(n)-1}
.Originally posted by @adr1anh in #154 (comment)
The text was updated successfully, but these errors were encountered: