Skip to content
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

Implement TestLessThanOrEqualAddress y EvalCircuit Hints #1843

Merged
merged 41 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from 35 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
7a5998b
add TestLessThanOrEqual match case + start implementing EvalCircuit Hint
FrancoGiachetta Sep 19, 2024
d013f72
add eval circuit functionallity
FrancoGiachetta Sep 20, 2024
3456d3d
Add support for circuit builtins in cairo-run
JulianGCalderon Sep 20, 2024
19c7fb8
Merge branch 'support-circuits-cairo1' of github.com:lambdaclass/cair…
FrancoGiachetta Sep 25, 2024
de0ddb6
possible fix to segment error in EvalCircuit Hint
FrancoGiachetta Sep 25, 2024
3d55984
remove unwanted files
FrancoGiachetta Sep 25, 2024
5e2a723
format
FrancoGiachetta Sep 25, 2024
32b62ea
fix NoStopPointer issue
FrancoGiachetta Sep 26, 2024
2fc3258
tests passing
FrancoGiachetta Sep 30, 2024
45b739f
tests passing
FrancoGiachetta Sep 30, 2024
fdd5341
default mod_builtins feature
FrancoGiachetta Sep 30, 2024
8a34950
format + update changelog
FrancoGiachetta Sep 30, 2024
1346d93
Merge branch 'main' into new-hints
FrancoGiachetta Sep 30, 2024
b2eca48
ignore circuit case if mod_builtin feature is not active
FrancoGiachetta Sep 30, 2024
ef1a132
add mod_builtin feature to make run
FrancoGiachetta Sep 30, 2024
449e167
format
FrancoGiachetta Sep 30, 2024
cbbe4a4
fix tests
FrancoGiachetta Sep 30, 2024
6bb12ef
Merge branch 'main' into new-hints
FrancoGiachetta Oct 1, 2024
e955a74
rewrite a little
FrancoGiachetta Oct 16, 2024
0e117a1
Merge branch 'main' into new-hints
FrancoGiachetta Oct 16, 2024
b5479ab
format
FrancoGiachetta Oct 16, 2024
03030aa
Merge branch 'new-hints' of github.com:lambdaclass/cairo-vm into new-…
FrancoGiachetta Oct 16, 2024
a293bb5
stylling
FrancoGiachetta Oct 16, 2024
aa4068f
stylling
FrancoGiachetta Oct 16, 2024
a3abf1f
reference
FrancoGiachetta Oct 16, 2024
fb5cd17
cargo lock
FrancoGiachetta Nov 14, 2024
cbec9b8
merge main
FrancoGiachetta Nov 14, 2024
4a745aa
Merge branch 'main' into new-hints
FrancoGiachetta Nov 14, 2024
1498ff0
remove unwanted files
FrancoGiachetta Nov 14, 2024
6b38500
change test
FrancoGiachetta Nov 14, 2024
397cd74
format
FrancoGiachetta Nov 14, 2024
862a5c0
better error handling
FrancoGiachetta Nov 15, 2024
f6a89a7
better error handling
FrancoGiachetta Nov 15, 2024
60d6602
better error handling
FrancoGiachetta Nov 15, 2024
1119398
fix
FrancoGiachetta Nov 15, 2024
b7bfc6e
fix CHANGELOG
FrancoGiachetta Nov 15, 2024
13e00ff
fix unwraps
FrancoGiachetta Nov 15, 2024
18d061c
fix unwraps
FrancoGiachetta Nov 15, 2024
d70786f
fix unwraps
FrancoGiachetta Nov 15, 2024
b367d96
clippy
FrancoGiachetta Nov 15, 2024
22491eb
Merge branch 'main' into new-hints
pefontana Nov 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
* fix: [#1851](https://github.com/lambdaclass/cairo-vm/pull/1851):
* Fix unsorted signature and mod builtin outputs in air_private_input.

* feat: add `EvalCircuit` and `TestLessThanOrEqualAddress` hints [#1843](https://github.com/lambdaclass/cairo-vm/pull/1843)

JulianGCalderon marked this conversation as resolved.
Show resolved Hide resolved
* feat(BREAKING): [#1824](https://github.com/lambdaclass/cairo-vm/pull/1824)[#1838](https://github.com/lambdaclass/cairo-vm/pull/1838):
* Add support for dynamic layout
* CLI change(BREAKING): The flag `cairo_layout_params_file` must be specified when using dynamic layout.
Expand Down
Loading
Loading