diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-04-30 23:38:34 +0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-04-30 23:38:34 +0800 |
commit | e9b7c703b30a6313a83a2e1b66ebd3f99acfb1f7 (patch) | |
tree | df937836cd2ce1e315ae567a07f55cd88a331724 | |
parent | 2c6faa0607856d75b7c9037afa6dedb7ba834ce6 (diff) | |
download | abc-e9b7c703b30a6313a83a2e1b66ebd3f99acfb1f7.tar.gz abc-e9b7c703b30a6313a83a2e1b66ebd3f99acfb1f7.tar.bz2 abc-e9b7c703b30a6313a83a2e1b66ebd3f99acfb1f7.zip |
Added supporting dual-output seq miters in &trim (bug fix).
-rw-r--r-- | src/aig/gia/giaDup.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/aig/gia/giaDup.c b/src/aig/gia/giaDup.c index 254c5607..f1197e62 100644 --- a/src/aig/gia/giaDup.c +++ b/src/aig/gia/giaDup.c @@ -916,8 +916,6 @@ Gia_Man_t * Gia_ManDupTrimmed( Gia_Man_t * p, int fTrimCis, int fTrimCos, int fD if ( i == Gia_ManPiNum(p) ) // there is no PIs - add dummy PI Gia_ManAppendCi(pNew); // add the ROs - Gia_ManFillValue( p ); - Gia_ManConst0(p)->Value = 0; Gia_ManForEachCi( p, pObj, i ) if ( !fTrimCis || pObj->Value > 0 || Gia_ObjIsRo(p, pObj) ) pObj->Value = Gia_ManAppendCi(pNew); |