-
Notifications
You must be signed in to change notification settings - Fork 13
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
Ec slope hint #257
Ec slope hint #257
Conversation
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.
Integration test?
I just try but there is still unimplemented hints to do an integration test |
Codecov Report
@@ Coverage Diff @@
## main #257 +/- ##
==========================================
+ Coverage 58.61% 58.75% +0.14%
==========================================
Files 41 42 +1
Lines 5318 5383 +65
==========================================
+ Hits 3117 3163 +46
- Misses 1937 1947 +10
- Partials 264 273 +9
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
A general comment for the whole PR, let's be consistent with the naming conventions, like using camel case and shorter names when applicable (for example, |
other than the namings, PR looks good 👍 |
pkg/hints/ec_hint.go
Outdated
func BigInt3FromVarName(name string, virtual_machine vm.VirtualMachine, ids_data hint_utils.IdsManager) (EcPoint, error) { | ||
point_addr, err := ids_data.GetAddr(name, &virtual_machine) | ||
func EcPointFromVarName(name string, vm VirtualMachine, idsData IdsManager) (EcPoint, error) { | ||
point_addr, err := idsData.GetAddr(name, &vm) |
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.
pointAddr
pkg/hints/ec_hint.go
Outdated
if err != nil { | ||
return err | ||
} | ||
|
||
y_bigint3, err := BigInt3FromBaseAddr(point_y, virtual_machine) | ||
y_bigint3, err := BigInt3FromBaseAddr(pointY, vm) |
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.
yBigint3
No description provided.