Undo recent assert.

This commit is contained in:
Alan Mishchenko 2015-06-27 21:38:32 -07:00
parent 66ef4a9ac1
commit b4d0abb77d
1 changed files with 2 additions and 2 deletions

View File

@ -192,8 +192,8 @@ void If_ObjPerformMappingAnd( If_Man_t * p, If_Obj_t * pObj, int Mode, int fPrep
continue;
// check if the cut is a special AND-gate cut
pCut->fAndCut = fUseAndCut && pCut->nLeaves == 2 && pCut->pLeaves[0] == pObj->pFanin0->Id && pCut->pLeaves[1] == pObj->pFanin1->Id;
assert( pCut->nLeaves != 2 || pCut->pLeaves[0] < pCut->pLeaves[1] );
assert( pCut->nLeaves != 2 || pObj->pFanin0->Id < pObj->pFanin1->Id );
//assert( pCut->nLeaves != 2 || pCut->pLeaves[0] < pCut->pLeaves[1] );
//assert( pCut->nLeaves != 2 || pObj->pFanin0->Id < pObj->pFanin1->Id );
// compute the truth table
pCut->iCutFunc = -1;
pCut->fCompl = 0;