Skip to content

Commit

Permalink
Updating experiment on extract adders
Browse files Browse the repository at this point in the history
  • Loading branch information
aletempiac committed Feb 22, 2024
1 parent 6f24f6e commit 86a5abe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion experiments/extract_adders.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ int main()
}

/* Remove structural redundancies (increases the number of discoverable HAs/FAs) */
aig_balance( aig, { false } );
aig_balancing_params bps;
bps.minimize_levels = false;
bps.fast_mode = false;
aig_balance( aig, bps );

const uint32_t size_before = aig.num_gates();

Expand Down

0 comments on commit 86a5abe

Please sign in to comment.