-
Notifications
You must be signed in to change notification settings - Fork 18
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
fix: remove enforce selector constraint #205
Conversation
Codecov Report
@@ Coverage Diff @@
## main #205 +/- ##
==========================================
- Coverage 94.87% 93.26% -1.62%
==========================================
Files 33 33
Lines 7069 6773 -296
==========================================
- Hits 6707 6317 -390
- Misses 362 456 +94
... and 1 file with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
cairo_prover/Cargo.toml
Outdated
[[bin]] | ||
name = "cairo-platinum" | ||
path = "src/main.rs" |
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.
There was a recent pr merged to main that modified the Makefile to use cairo-platinum-prover
as the name of the binary. That should be reverted if this change is merged to main
|
||
let memory_holes = get_memory_holes(&address_cols, public_input.public_memory.len()); | ||
let memory_holes = get_memory_holes(&address_cols, public_input.codelen); | ||
// let memory_holes = get_memory_holes(&address_cols, public_input.public_memory.len()); |
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.
this line should be removed
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.
LGTM. Left some minor comments
Removes the enforce selector constraint from the Cairo AIR.
IMPORTANT NOTE: For the moment, since we need programs compiled in proof mode, Cairo 1 programs will not be supported.