forked from visoftsolutions/noir_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AztecProtocol#3874 from AztecProtocol/md/avm-main-…
…sync chore: merge avm main
- Loading branch information
Showing
46 changed files
with
4,399 additions
and
1,683 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ node_modules | |
ts/dest | ||
.tsbuildinfo | ||
.idea | ||
cmake-build-debug | ||
cmake-build-debug | ||
*_opt.pil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
namespace toy(256); | ||
pol commit q_tuple_set; | ||
|
||
// Set 1 | ||
pol commit set_1_column_1; | ||
pol commit set_1_column_2; | ||
// Set 2 | ||
pol commit set_2_column_1; | ||
pol commit set_2_column_2; | ||
|
||
// This is a column based tuple lookup | ||
#[two_column_perm] // the name of the inverse | ||
q_tuple_set { set_1_column_1, set_1_column_2 } is { set_2_column_1, set_2_column_2 }; | ||
|
||
// Relation not used -> we currently require a single relation for codegen | ||
pol commit x; | ||
x' - x = 0; | ||
|
||
// Also needs a fixed relation | ||
pol fixed first = [1] + [0]*; |
Oops, something went wrong.