Skip to content

Commit

Permalink
small bug fix to the known groups preprocessing in the dataflow plugi…
Browse files Browse the repository at this point in the history
…n regarding caching
  • Loading branch information
SimonKlx committed Apr 24, 2024
1 parent 5345634 commit b7e1ee6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ namespace hal
{
if (const auto group_it = net_to_group_index.find(current); group_it != net_to_group_index.end())
{
std::get<1>(suc_cache[current]).insert(group_it->second);
for (const auto* n : previous)
{
std::get<1>(suc_cache[n]).insert(group_it->second);
Expand Down Expand Up @@ -257,6 +258,7 @@ namespace hal
{
if (const auto group_it = net_to_group_index.find(current); group_it != net_to_group_index.end())
{
pred_cache[current].insert(group_it->second);
for (const auto* n : previous)
{
pred_cache[n].insert(group_it->second);
Expand Down

0 comments on commit b7e1ee6

Please sign in to comment.