diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-02-21 21:32:28 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-02-21 21:32:28 -0800 |
commit | a84b1cfc5570b7ad5df4e8ee50afdffd3ae9ba83 (patch) | |
tree | bb79e7c527d5fce0587e891e65edb79cccc7b521 /src | |
parent | 75ee395f916f44fd564deb89b64a2c7e4db081bc (diff) | |
download | abc-a84b1cfc5570b7ad5df4e8ee50afdffd3ae9ba83.tar.gz abc-a84b1cfc5570b7ad5df4e8ee50afdffd3ae9ba83.tar.bz2 abc-a84b1cfc5570b7ad5df4e8ee50afdffd3ae9ba83.zip |
Fixed a critical bug in the previous update.
Diffstat (limited to 'src')
-rw-r--r-- | src/aig/gia/giaEquiv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aig/gia/giaEquiv.c b/src/aig/gia/giaEquiv.c index cfebd3a6..44e8f876 100644 --- a/src/aig/gia/giaEquiv.c +++ b/src/aig/gia/giaEquiv.c @@ -949,7 +949,7 @@ Gia_Man_t * Gia_ManSpecReduce( Gia_Man_t * p, int fDualOut, int fSynthesis, int if ( Vec_IntEntry( vTrace, i ) == 0 ) continue; pObj = Gia_ManPo( pNew, Gia_ManPoNum(p) + i ); - pObj->fCompl0 = 0; + pObj->fCompl0 = 1; pObj->iDiff0 = Gia_ObjId( pNew, pObj ); } Vec_IntFreeP( &vTrace ); |