mirror of https://github.com/YosysHQ/abc.git
Consider buffers in matrix covering as free
This commit is contained in:
parent
7dcc10a254
commit
38e632a954
|
|
@ -945,6 +945,10 @@ private:
|
|||
/* discard solutions with support over LUT size */
|
||||
if ( cost > ps.lut_size )
|
||||
continue;
|
||||
|
||||
/* buffers have zero cost */
|
||||
if ( cost == 1 )
|
||||
cost = 0;
|
||||
|
||||
float sort_cost = 0;
|
||||
if constexpr ( UseHeuristic )
|
||||
|
|
|
|||
Loading…
Reference in New Issue