Skip to content

Commit

Permalink
Merge pull request #215 from NilFoundation/194-lookup-table-packer
Browse files Browse the repository at this point in the history
Horizontal lookup packing algorithm.
  • Loading branch information
Iluvmagick authored Nov 10, 2023
2 parents 623ec86 + b17646a commit 942ecc8
Show file tree
Hide file tree
Showing 4 changed files with 418 additions and 177 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
# crypto3_zk_systems_pcd_r1cs_pcd_r1cs_mp_ppzkpcd_r1cs_mp_ppzkpcd_test
# crypto3_zk_systems_plonk_pickles_kimchi_test
# crypto3_zk_systems_plonk_pickles_oracles_test

] # Tests to execute
steps:
- name: Cleanup # TODO - move to scripts on runner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ namespace nil {
return _public_table.selector(index);
}

void fill_constant(std::uint32_t index, const ColumnType& column) {
virtual void fill_constant(std::uint32_t index, const ColumnType& column) {
_public_table.fill_constant(index, column);
}

void fill_selector(std::uint32_t index, const ColumnType& column) {
virtual void fill_selector(std::uint32_t index, const ColumnType& column) {
_public_table.fill_selector(index, column);
}

Expand Down

This file was deleted.

Loading

0 comments on commit 942ecc8

Please sign in to comment.