Adding new Python API 'co_supp'.

This commit is contained in:
Alan Mishchenko 2015-07-07 08:28:59 -07:00
parent 95af979753
commit 43ad54b938
1 changed files with 1 additions and 0 deletions

View File

@ -951,6 +951,7 @@ Vec_Int_t * Abc_NtkNodeSupportInt( Abc_Ntk_t * pNtk, int iCo )
pObj = Abc_NtkCo( pNtk, iCo );
vNodes = Vec_IntAlloc( 100 );
Abc_NtkNodeSupportInt_rec( Abc_ObjFanin0(pObj), vNodes );
Vec_IntSort( vNodes, 0 );
return vNodes;
}