mirror of https://github.com/YosysHQ/abc.git
New AIG optimization package.
This commit is contained in:
parent
ad8a3f5159
commit
4637097491
|
|
@ -1632,6 +1632,7 @@ ddSymmSiftingBackward(
|
|||
Move *move;
|
||||
int res = -1;
|
||||
|
||||
size = size;
|
||||
for (move = moves; move != NULL; move = move->next) {
|
||||
if (move->size < size) {
|
||||
size = move->size;
|
||||
|
|
|
|||
|
|
@ -412,7 +412,7 @@ void Dau_DsdTestOne( word t, int i )
|
|||
// t = t & 0xFFFFFFFF;
|
||||
// t |= (t << 32);
|
||||
p = Dau_DsdPerform( t );
|
||||
return;
|
||||
// return;
|
||||
|
||||
t2 = Dau_DsdToTruth( p );
|
||||
if ( t != t2 )
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
SRC += src/opt/dau/dau.c \
|
||||
src/opt/dau/daCore.c \
|
||||
src/opt/dau/daDsd.c
|
||||
src/opt/dau/dauCore.c \
|
||||
src/opt/dau/dauDsd.c
|
||||
|
|
|
|||
Loading…
Reference in New Issue