-
Notifications
You must be signed in to change notification settings - Fork 79
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
Make CommitmentSchemeProver::prove_values take ownership #852
base: 09-15-Add_arithmetic_op_counts_to_InfoEvaluator
Are you sure you want to change the base?
Conversation
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @andrewmilson and the rest of your teammates on Graphite |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 09-15-Add_arithmetic_op_counts_to_InfoEvaluator #852 +/- ##
===================================================================================
+ Coverage 91.93% 91.95% +0.02%
===================================================================================
Files 90 90
Lines 12548 12544 -4
Branches 12548 12544 -4
===================================================================================
- Hits 11536 11535 -1
+ Misses 901 898 -3
Partials 111 111
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Reviewed 9 of 9 files at r1, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @andrewmilson and @shaharsamocha7)
crates/prover/src/core/prover/mod.rs
line 150 at r1 (raw file):
fn extract_composition_oods_eval(&self) -> Result<SecureField, InvalidOodsSampleStructure> { // TODO(andrew): `[.., composition_mask, _quotients_mask]` when add quotients commitment. let [_traces_mask @ .., composition_mask] = &**self.sampled_values else {
Why are you binding traces_mask
?
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.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @Alon-Ti and @shaharsamocha7)
crates/prover/src/core/prover/mod.rs
line 150 at r1 (raw file):
Previously, Alon-Ti wrote…
Why are you binding
traces_mask
?
I would have done _ @ ..
but it errors strangely.
OHHH. Wow didn't realise you can just do ..
SMH, tyty
798f58a
to
a46c994
Compare
4de2301
to
64b9479
Compare
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.
Reviewed 6 of 6 files at r2, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @shaharsamocha7)
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.
Reviewed 3 of 9 files at r1, 6 of 6 files at r2, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @andrewmilson)
Simplifies the implementation of quotient commitment tree in following PR
This change is