Skip to content
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ada5a2b
Add hint code for UINT348_UNSIGNED_DIV_REM
fmoletta Apr 11, 2023
d1b7e84
Add file for uint348 files
fmoletta Apr 11, 2023
c409d01
Add pack & split for uint348
fmoletta Apr 12, 2023
93c6f4e
Move comment
fmoletta Apr 12, 2023
82dbf2b
Implement uint348_unsigned_div_rem hint
fmoletta Apr 12, 2023
df9deb2
Add integration test
fmoletta Apr 12, 2023
7b2f5d9
Add integration test
fmoletta Apr 12, 2023
b1a3fbb
Add unit tests
fmoletta Apr 12, 2023
110605a
Add hint on split_128
fmoletta Apr 12, 2023
8cc3ce7
Test split_128 hint
fmoletta Apr 12, 2023
378788d
Add add_no_uint384_hint
fmoletta Apr 12, 2023
271a38c
Fix hint + add tests
fmoletta Apr 12, 2023
ed7de28
Add hint code for UINT348_UNSIGNED_DIV_REM_EXPAND
fmoletta Apr 12, 2023
be408c3
Msc fixes
fmoletta Apr 12, 2023
8c6fb8c
Add integration test
fmoletta Apr 12, 2023
512a80e
Reduce Uint384_expand representation to the 3 used limbs
fmoletta Apr 12, 2023
089398e
Add unit test
fmoletta Apr 12, 2023
6852a87
Add hint code for UINT384_SQRT
fmoletta Apr 13, 2023
e3e05be
Add implementation for hint on sqrt
fmoletta Apr 13, 2023
faf4765
Integration test
fmoletta Apr 13, 2023
d30d404
Add unit tests
fmoletta Apr 13, 2023
aa9ce34
Merge branch 'main' of github.com:lambdaclass/cairo-rs into uint348-h…
fmoletta Apr 13, 2023
f257b56
Fix missing directive
fmoletta Apr 13, 2023
4218e80
Run cairo-format
fmoletta Apr 13, 2023
6fc7945
Add hint code for UINT384_SIGNED_NN hint
fmoletta Apr 13, 2023
9c8983a
Implement hint uint348_signed_nn
fmoletta Apr 13, 2023
e024e70
Add integration test
fmoletta Apr 13, 2023
07ecd8d
Add unit tests
fmoletta Apr 13, 2023
293207d
Fix unit tests
fmoletta Apr 13, 2023
923fec7
Update src/hint_processor/builtin_hint_processor/uint384.rs
fmoletta Apr 13, 2023
e1d0100
Add changelog entry
fmoletta Apr 13, 2023
51c7dc3
Spelling
fmoletta Apr 13, 2023
962aecc
Add changelog entry
fmoletta Apr 13, 2023
bf893a1
Merge branch 'uint348-hints-2' of github.com:lambdaclass/cairo-rs int…
fmoletta Apr 13, 2023
87de9f1
Merge branch 'uint348-hints' into uint348-hints-2
fmoletta Apr 13, 2023
d26227c
Fix commited suggestion
fmoletta Apr 13, 2023
655df1a
Fix test names + remove assert_matches
fmoletta Apr 14, 2023
4d889e2
Merge branch 'main' into uint348-hints-2
fmoletta Apr 14, 2023
07f3321
Merge branch 'main' into uint348-hints-2
fmoletta Apr 14, 2023
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: 1 addition & 1 deletion cairo_programs/is_quad_residue_test.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ func main{output_ptr: felt*}() {

check_quad_res(inputs, expected, 0);

return();
return ();
}
Loading