diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-09-27 10:09:57 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-09-27 10:09:57 -0700 |
commit | debbf4d807f96211c0e900d32eceaec98ed81c5b (patch) | |
tree | c9d60944525cb3d9594e24de07aef00b07bdbe86 | |
parent | f6653175b4e4955c41e1dbcf35422a24ebce4314 (diff) | |
download | abc-debbf4d807f96211c0e900d32eceaec98ed81c5b.tar.gz abc-debbf4d807f96211c0e900d32eceaec98ed81c5b.tar.bz2 abc-debbf4d807f96211c0e900d32eceaec98ed81c5b.zip |
Bug fix.
-rw-r--r-- | src/base/abc/abcFanio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/abc/abcFanio.c b/src/base/abc/abcFanio.c index 2669ae0c..d7998780 100644 --- a/src/base/abc/abcFanio.c +++ b/src/base/abc/abcFanio.c @@ -87,7 +87,7 @@ void Abc_ObjAddFanin( Abc_Obj_t * pObj, Abc_Obj_t * pFanin ) assert( !Abc_ObjIsComplement(pObj) ); assert( pObj->pNtk == pFaninR->pNtk ); assert( pObj->Id >= 0 && pFaninR->Id >= 0 ); - assert( !Abc_ObjIsPi(pObj) && !Abc_ObjIsPo(pFanin) ); // fanin of PI or fanout of PO + assert( !Abc_ObjIsPi(pObj) && !Abc_ObjIsPo(pFaninR) ); // fanin of PI or fanout of PO assert( !Abc_ObjIsCo(pObj) || !Abc_ObjFaninNum(pObj) ); // CO with two fanins assert( !Abc_ObjIsNet(pObj) || !Abc_ObjFaninNum(pObj) ); // net with two fanins Vec_IntPushMem( pObj->pNtk->pMmStep, &pObj->vFanins, pFaninR->Id ); |