Fixed a glitch in &dch, which removed the flops.

This commit is contained in:
Alan Mishchenko 2011-07-16 12:36:06 +07:00
parent 302f7d7a97
commit ccaed178ca
1 changed files with 1 additions and 0 deletions

View File

@ -463,6 +463,7 @@ Aig_Man_t * Dch_DeriveChoiceAigInt( Aig_Man_t * pAig )
Aig_ManForEachPo( pAig, pObj, i )
Aig_ObjCreatePo( pChoices, Aig_ObjChild0CopyRepr(pChoices, pObj) );
Dch_DeriveChoiceCountEquivs( pChoices );
Aig_ManSetRegNum( pChoices, Aig_ManRegNum(pAig) );
return pChoices;
}