Skip to content

Commit

Permalink
fixed mapping gates through graph rather than subgraph
Browse files Browse the repository at this point in the history
  • Loading branch information
SJulianS committed May 28, 2024
1 parent b592e11 commit 3634cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/hawkeye/src/sbox_lookup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ namespace hal
std::vector<std::set<Gate*>> input_groups;
for (const auto& comp : comp_res.get())
{
auto gates_res = graph->get_gates_from_vertices(comp);
auto gates_res = subgraph->get_gates_from_vertices(comp);
if (gates_res.is_error())
{
return ERR(gates_res.get_error());
Expand Down

0 comments on commit 3634cee

Please sign in to comment.