Commit 6bc381ba by Alan Mishchenko

Changes to align node IDs in Abc_Ntk_t representing a logic network with…

Changes to align node IDs in Abc_Ntk_t representing a logic network with Abc_Ntk_t representing an AIG, by skipping object ID number 0 reserved for the constant node.
parent 1586d96c
...@@ -69,22 +69,20 @@ Abc_Ntk_t * Abc_NtkAlloc( Abc_NtkType_t Type, Abc_NtkFunc_t Func, int fUseMemMan ...@@ -69,22 +69,20 @@ Abc_Ntk_t * Abc_NtkAlloc( Abc_NtkType_t Type, Abc_NtkFunc_t Func, int fUseMemMan
// get ready to assign the first Obj ID // get ready to assign the first Obj ID
pNtk->nTravIds = 1; pNtk->nTravIds = 1;
// start the functionality manager // start the functionality manager
if ( !Abc_NtkIsStrash(pNtk) )
Vec_PtrPush( pNtk->vObjs, NULL );
if ( Abc_NtkIsStrash(pNtk) ) if ( Abc_NtkIsStrash(pNtk) )
pNtk->pManFunc = Abc_AigAlloc( pNtk ); pNtk->pManFunc = Abc_AigAlloc( pNtk );
else else if ( Abc_NtkHasSop(pNtk) || Abc_NtkHasBlifMv(pNtk) )
{ pNtk->pManFunc = Mem_FlexStart();
Vec_PtrPush( pNtk->vObjs, NULL ); else if ( Abc_NtkHasBdd(pNtk) )
if ( Abc_NtkHasSop(pNtk) || Abc_NtkHasBlifMv(pNtk) ) pNtk->pManFunc = Cudd_Init( 20, 0, CUDD_UNIQUE_SLOTS, CUDD_CACHE_SLOTS, 0 );
pNtk->pManFunc = Mem_FlexStart(); else if ( Abc_NtkHasAig(pNtk) )
else if ( Abc_NtkHasBdd(pNtk) ) pNtk->pManFunc = Hop_ManStart();
pNtk->pManFunc = Cudd_Init( 20, 0, CUDD_UNIQUE_SLOTS, CUDD_CACHE_SLOTS, 0 ); else if ( Abc_NtkHasMapping(pNtk) )
else if ( Abc_NtkHasAig(pNtk) ) pNtk->pManFunc = Abc_FrameReadLibGen();
pNtk->pManFunc = Hop_ManStart(); else if ( !Abc_NtkHasBlackbox(pNtk) )
else if ( Abc_NtkHasMapping(pNtk) ) assert( 0 );
pNtk->pManFunc = Abc_FrameReadLibGen();
else if ( !Abc_NtkHasBlackbox(pNtk) )
assert( 0 );
}
// name manager // name manager
pNtk->pManName = Nm_ManCreate( 200 ); pNtk->pManName = Nm_ManCreate( 200 );
// attribute manager // attribute manager
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment