-
Notifications
You must be signed in to change notification settings - Fork 94
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
Arrabiata: introduce trait ArrabiataCurve to englobe all data a curve must implement to be used with Arrabiata #2719
base: dw/mvpoly-arrabiata-convert-into
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dw/mvpoly-arrabiata-convert-into #2719 +/- ##
===================================================================
Coverage ? 72.54%
===================================================================
Files ? 248
Lines ? 57942
Branches ? 0
===================================================================
Hits ? 42032
Misses ? 15910
Partials ? 0 ☔ View full report in Codecov by Sentry. |
4b0fd17
to
1e9e66c
Compare
Replicating the idea of KimchiCurve.
bc7eeb2
to
a7524e7
Compare
|
||
/// Represents additional information that a curve needs in order to be used | ||
/// with Arrabiata. | ||
pub trait ArrabiataCurve: CommitmentCurve + EndoCurve { |
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.
Is it necessarry to introduce another trait ?
I don't see anything that isn't in KimchiCurve
(Which is not a surprise, as both Kimchi and Arrabiata use a cycle of curve for plonk verification operations)
No description provided.