Commit 421362f7 by Alan Mishchenko

Bug fix in a recent code for mapping.

parent 79a4038f
......@@ -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;
......
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