Skip to content

Commit

Permalink
Merge with master branch #95
Browse files Browse the repository at this point in the history
  • Loading branch information
ETatuzova committed Nov 15, 2024
2 parents 2d2a8ec + 925420c commit 992b095
Show file tree
Hide file tree
Showing 6 changed files with 567 additions and 489 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ namespace nil {
dynamic_lookup_tables = ct.get_dynamic_lookup_tables();

// compatibility layer: lookup constraint list
std::unordered_map<row_selector<>, std::vector<std::pair<std::string, std::vector<constraint_type>>>>
std::unordered_map<row_selector<>, std::vector<typename context_type::lookup_constraint_type>>
lookup_constraints = ct.get_lookup_constraints();
std::set<std::string> lookup_tables;
for(const auto& [row_list, lookup_list] : lookup_constraints) {
Expand All @@ -293,7 +293,7 @@ namespace nil {
lookup_tables.insert(table_name);
}
std::size_t table_index = bp.get_reserved_indices().at(table_name);
lookup_gate.push_back({table_index,single_lookup_constraint.second});
lookup_gate.push_back({table_index, single_lookup_constraint.second});
}

auto iter = selector_to_index_map.find(row_list);
Expand Down
Loading

0 comments on commit 992b095

Please sign in to comment.