Skip to content

Commit

Permalink
Refactor(Report): Mismatch in new added report (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjrforcyber authored Sep 24, 2024
1 parent ff186c4 commit f263510
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/mockturtle/algorithms/aig_resub.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ struct aig_resyn_resub_stats

void report() const
{
fmt::print( "[i] <ResubFn: mig_resyn_functor>\n" );
fmt::print( "[i] <ResubFn: aig_resyn_functor>\n" );
fmt::print( "[i] #solution = {:6d}\n", num_success );
fmt::print( "[i] #invoke = {:6d}\n", num_success + num_fail );
fmt::print( "[i] engine time: {:>5.2f} secs\n", to_seconds( time_compute_function ) );
Expand Down
2 changes: 1 addition & 1 deletion include/mockturtle/algorithms/xag_resub.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct xag_resyn_resub_stats

void report() const
{
fmt::print( "[i] <ResubFn: mig_resyn_functor>\n" );
fmt::print( "[i] <ResubFn: xag_resyn_functor>\n" );
fmt::print( "[i] #solution = {:6d}\n", num_success );
fmt::print( "[i] #invoke = {:6d}\n", num_success + num_fail );
fmt::print( "[i] engine time: {:>5.2f} secs\n", to_seconds( time_compute_function ) );
Expand Down

0 comments on commit f263510

Please sign in to comment.