Bug fix in a recent code for mapping.

This commit is contained in:
Alan Mishchenko 2014-05-04 23:55:19 +08:00
parent 79a4038f21
commit 421362f709
1 changed files with 1 additions and 1 deletions

View File

@ -985,7 +985,7 @@ Vec_Ptr_t * Abc_AigDfsMap( Abc_Ntk_t * pNtk )
if ( i >= Abc_NtkCoNum(pNtk) - pNtk->nBarBufs )
break;
Abc_AigDfs_rec( Abc_ObjFanin0(pNode), vNodes );
assert( Abc_ObjIsPo(pNode) );
assert( Abc_ObjIsCo(pNode) );
Abc_NodeSetTravIdCurrent( pNode );
}
return vNodes;