Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/virtual_pi_network' into virtual…
Browse files Browse the repository at this point in the history
…_pi_network
  • Loading branch information
hibenj committed Oct 17, 2024
2 parents e4f5499 + 482bb05 commit ba87098
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions include/fiction/networks/virtual_pi_network.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ class virtual_pi_network : public Ntk
template <typename Fn>
void foreach_virtual_pi(Fn&& fn) const
{
mockturtle::detail::foreach_element(v_storage->virtual_inputs.cbegin(), v_storage->virtual_inputs.cend(), std::forward<Fn>(fn));
mockturtle::detail::foreach_element(v_storage->virtual_inputs.cbegin(), v_storage->virtual_inputs.cend(),
std::forward<Fn>(fn));
}

/**
Expand Down Expand Up @@ -299,7 +300,8 @@ class virtual_pi_network : public Ntk
template <typename Fn>
void foreach_virtual_ci(Fn&& fn) const
{
mockturtle::detail::foreach_element(v_storage->virtual_inputs.cbegin(), v_storage->virtual_inputs.cend(), std::forward<Fn>(fn));
mockturtle::detail::foreach_element(v_storage->virtual_inputs.cbegin(), v_storage->virtual_inputs.cend(),
std::forward<Fn>(fn));
}

private:
Expand Down

0 comments on commit ba87098

Please sign in to comment.