-
Notifications
You must be signed in to change notification settings - Fork 12
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
chore: removed unnecessary brillig code for range constraining from_field
#103
base: main
Are you sure you want to change the base?
Conversation
Please don't creat unnecessary stacks of PRs as it slows down getting later prs merged if something is blocked. |
Changes to circuit sizes
🧾 Summary (10% most significant diffs)
Full diff report 👇
|
@@ -51,6 +51,7 @@ jobs: | |||
run: nargo test | |||
|
|||
format: | |||
needs: [noir-version-list] |
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.
needs: [noir-version-list] |
@@ -2,6 +2,6 @@ | |||
name = "bignum" | |||
type = "lib" | |||
authors = [""] | |||
compiler_version = ">=1.0.0" | |||
compiler_version = ">=0.36.0" |
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.
?
Description
I added a
validate_in_grumpkin
method to replace thevalidate_gt
check in thefrom_field
method.This method removes unnecessary carry flags which
validate_gt
computes.Problem*
Resolves
Summary*
Additional Context
PR Checklist*
cargo fmt
on default settings.