-
Notifications
You must be signed in to change notification settings - Fork 43
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
some refactoring #574
some refactoring #574
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #574 +/- ##
=======================================
Coverage 87.82% 87.82%
=======================================
Files 109 109
Lines 34621 34621
=======================================
Hits 30406 30406
Misses 4215 4215 ☔ 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.
Thanks for the contribution @tcoratger !
If you restore the deleted types we can merge it!
Done |
* refactor collect instructions * Update src/libfuncs/enum.rs * Update benches/util.rs * Update src/compiler.rs * Update src/compiler.rs * Update src/compiler.rs * Update src/debug_info.rs * Update src/debug_info.rs * Update src/debug_info.rs * Update src/libfuncs/enum.rs * update --------- Co-authored-by: Pedro Fontana <fontana.pedro93@gmail.com> Co-authored-by: Edgar <git@edgarluque.com>
Small refactorings are made on the following points:
collect
are avoided because they are inferred automatically.Felt::from(1)
is replaced by the dedicated constantFelt::ONE
Felt::from(0)
is replaced by the dedicated constantFelt::ZERO
Checklist