Making BMC engines (bmc2, bmc3) to perform OR-decomposition by default.

This commit is contained in:
Alan Mishchenko 2012-02-24 13:37:31 -08:00
parent d80f43a185
commit 3552d39b71
1 changed files with 8 additions and 1 deletions

View File

@ -133,10 +133,17 @@ Aig_Man_t * Abc_NtkToDarBmc( Abc_Ntk_t * pNtk, Vec_Int_t ** pvMap )
// collect the drivers
vSuper = Vec_PtrAlloc( 100 );
vDrivers = Vec_PtrAlloc( 100 );
if ( pvMap )
if ( pvMap )
*pvMap = Vec_IntAlloc( 100 );
Abc_NtkForEachPo( pNtk, pObj, i )
{
if ( pNtk->nConstrs && i >= pNtk->nConstrs )
{
Vec_PtrPush( vDrivers, Abc_ObjNot(Abc_ObjChild0(pObj)) );
if ( pvMap )
Vec_IntPush( *pvMap, i );
continue;
}
Abc_CollectTopOr( Abc_ObjChild0(pObj), vSuper );
Vec_PtrForEachEntry( Abc_Obj_t *, vSuper, pTemp, k )
{