diff options
| author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-02 23:24:08 -0700 | 
|---|---|---|
| committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-02 23:24:08 -0700 | 
| commit | 4aac586cae0e87c07e04c268735031de21ac7fc1 (patch) | |
| tree | 942a21f9d6831df1cbee09ca13b70449f5274ddb | |
| parent | 6014c4b11ec25aaa23dc72101c548857ab4e7367 (diff) | |
| download | abc-4aac586cae0e87c07e04c268735031de21ac7fc1.tar.gz abc-4aac586cae0e87c07e04c268735031de21ac7fc1.tar.bz2 abc-4aac586cae0e87c07e04c268735031de21ac7fc1.zip  | |
Integrating synthesis into the new BMC engine.
| -rw-r--r-- | src/aig/gia/giaBalance.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/src/aig/gia/giaBalance.c b/src/aig/gia/giaBalance.c index 12659149..7d27cd00 100644 --- a/src/aig/gia/giaBalance.c +++ b/src/aig/gia/giaBalance.c @@ -129,8 +129,9 @@ void Gia_ManSuperCollectXor_rec( Gia_Man_t * p, Gia_Obj_t * pObj )  {      assert( !Gia_IsComplement(pObj) );      if ( !Gia_ObjIsXor(pObj) ||  -        Gia_ObjRefNum(p, pObj) > 2 ||  -        (Gia_ObjRefNum(p, pObj) == 2 && (Gia_ObjRefNum(p, Gia_ObjFanin0(pObj)) == 1 || Gia_ObjRefNum(p, Gia_ObjFanin1(pObj)) == 1)) ||  +        Gia_ObjRefNum(p, pObj) > 1 ||  +//        Gia_ObjRefNum(p, pObj) > 2 ||  +//        (Gia_ObjRefNum(p, pObj) == 2 && (Gia_ObjRefNum(p, Gia_ObjFanin0(pObj)) == 1 || Gia_ObjRefNum(p, Gia_ObjFanin1(pObj)) == 1)) ||           Vec_IntSize(p->vSuper) > 100 )      {          Vec_IntPush( p->vSuper, Gia_ObjToLit(p, pObj) ); @@ -144,8 +145,9 @@ void Gia_ManSuperCollectAnd_rec( Gia_Man_t * p, Gia_Obj_t * pObj )  {      if ( Gia_IsComplement(pObj) ||           !Gia_ObjIsAndReal(p, pObj) ||  -        Gia_ObjRefNum(p, pObj) > 2 ||  -        (Gia_ObjRefNum(p, pObj) == 2 && (Gia_ObjRefNum(p, Gia_ObjFanin0(pObj)) == 1 || Gia_ObjRefNum(p, Gia_ObjFanin1(pObj)) == 1)) ||  +        Gia_ObjRefNum(p, pObj) > 1 ||  +//        Gia_ObjRefNum(p, pObj) > 2 ||  +//        (Gia_ObjRefNum(p, pObj) == 2 && (Gia_ObjRefNum(p, Gia_ObjFanin0(pObj)) == 1 || Gia_ObjRefNum(p, Gia_ObjFanin1(pObj)) == 1)) ||           Vec_IntSize(p->vSuper) > 100 )      {          Vec_IntPush( p->vSuper, Gia_ObjToLit(p, pObj) );  | 
