-
Notifications
You must be signed in to change notification settings - Fork 148
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: add c api for proving sumcheck (PROOF-913) #245
Conversation
cbindings/sumcheck.t.cc
Outdated
using namespace sxt; | ||
using s25t::operator""_s25; | ||
|
||
TEST_CASE("todo") { |
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.
The TEST_CASE name is still "todo".
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.
Fixed. Thank you.
|
||
using namespace sxt; | ||
|
||
TEST_CASE("todo") {} |
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.
Just double checking if you wanted to add tests with this PR, or is this a placeholder for future tests?
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.
Added a test. Thank you.
🎉 This PR is included in version 1.109.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Rationale for this change
Add C API for generating sumcheck proofs.
What changes are included in this PR?
Extend blitzar_api.h with a new function sxt_prove_sumcheck for creating sumcheck proofs.
Are these changes tested?
Yes.