Commit b186f362 by Alan Mishchenko

Bug fix in flop-level abstraction refinement.

parent 274e8ada
...@@ -215,6 +215,7 @@ Vec_Int_t * Saig_RefManFindReason( Saig_RefMan_t * p ) ...@@ -215,6 +215,7 @@ Vec_Int_t * Saig_RefManFindReason( Saig_RefMan_t * p )
// select the reason // select the reason
vReasons = Vec_IntAlloc( 100 ); vReasons = Vec_IntAlloc( 100 );
Aig_ManIncrementTravId( p->pFrames ); Aig_ManIncrementTravId( p->pFrames );
if ( !Aig_ObjIsConst1(Aig_ObjFanin0(pObj)) )
Saig_RefManFindReason_rec( p->pFrames, Aig_ObjFanin0(pObj), vPrios, vReasons ); Saig_RefManFindReason_rec( p->pFrames, Aig_ObjFanin0(pObj), vPrios, vReasons );
Vec_IntFree( vPrios ); Vec_IntFree( vPrios );
return vReasons; return vReasons;
......
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