forked from MinaProtocol/mina
-
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 MinaProtocol#14549 from MinaProtocol/dannywillems/…
…update-proof-systems-to-new-lookup Update proof-systems
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule proof-systems
updated
26 files
+1 −1 | .github/workflows/benches.yml | |
+1 −1 | .github/workflows/coverage.yml.disabled | |
+1 −1 | .github/workflows/gh-page.yml | |
+1 −1 | .github/workflows/rust.yml | |
+3 −1 | .gitignore | |
+17 −17 | book/src/SUMMARY.md | |
+11 −11 | book/src/kimchi/overview.md | |
+106 −79 | book/src/rfcs/3-lookup.md | |
+2 −2 | book/src/specs/kimchi.md | |
+63 −39 | kimchi/src/circuits/constraints.rs | |
+2 −0 | kimchi/src/circuits/lookup/constraints.rs | |
+164 −38 | kimchi/src/circuits/lookup/index.rs | |
+1 −1 | kimchi/src/circuits/lookup/lookups.rs | |
+7 −3 | kimchi/src/circuits/lookup/runtime_tables.rs | |
+173 −24 | kimchi/src/circuits/lookup/tables/mod.rs | |
+3 −5 | kimchi/src/circuits/lookup/tables/range_check.rs | |
+2 −4 | kimchi/src/circuits/lookup/tables/xor.rs | |
+4 −0 | kimchi/src/error.rs | |
+3 −0 | kimchi/src/precomputed_srs.rs | |
+1 −0 | kimchi/src/prover_index.rs | |
+1 −0 | kimchi/src/tests/and.rs | |
+0 −1 | kimchi/src/tests/foreign_field_add.rs | |
+7 −7 | kimchi/src/tests/lookup.rs | |
+4 −1 | kimchi/src/tests/range_check.rs | |
+0 −1 | kimchi/src/tests/rot.rs | |
+0 −1 | kimchi/src/tests/xor.rs |
Submodule snarkyjs
updated
from 92698d to d92893