-
Notifications
You must be signed in to change notification settings - Fork 63
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
shared randomness for limitless prover #587
shared randomness for limitless prover #587
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## prover/limitless-top-level #587 +/- ##
=============================================================
Coverage 68.49% 68.49%
Complexity 1130 1130
=============================================================
Files 321 321
Lines 12842 12842
Branches 1287 1287
=============================================================
Hits 8796 8796
Misses 3506 3506
Partials 540 540
*This pull request uses carry forward flags. Click here to find out more. |
5d2773c
to
df004ef
Compare
prover/protocol/column/column.go
Outdated
@@ -119,7 +120,11 @@ func EvalExprColumn(run ifaces.Runtime, board symbolic.ExpressionBoard) smartvec | |||
case ifaces.Column: | |||
inputs[i] = m.GetColAssignment(run) | |||
case coin.Info: | |||
v := run.GetRandomCoinField(m.Name) | |||
if m.Type == coin.FromSeed { | |||
v = run.GetRandomCoinFromSeed(m.Name) |
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.
It would be simpler if you modified GetRandomCoinField to be able to do that. That way you would not change this everytime we sample a coin.
07ae16a
into
prover/limitless-top-level
This PR implements the generation of shared randomness for the distributed prover.
Checklist