Remove assertions when the solver becomes UNSAT after adding constraints in 'scorr -c'.

This commit is contained in:
Alan Mishchenko 2019-10-05 10:40:01 -07:00
parent 3b4e9573bc
commit 4dc569c134
1 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ int Ssw_NodesAreEquiv( Ssw_Man_t * p, Aig_Obj_t * pOld, Aig_Obj_t * pNew )
if ( p->pMSat->pSat->qtail != p->pMSat->pSat->qhead )
{
RetValue = sat_solver_simplify(p->pMSat->pSat);
assert( RetValue != 0 );
//assert( RetValue != 0 );
}
clk = Abc_Clock();
@ -139,7 +139,7 @@ p->timeSatUndec += Abc_Clock() - clk;
if ( p->pMSat->pSat->qtail != p->pMSat->pSat->qhead )
{
RetValue = sat_solver_simplify(p->pMSat->pSat);
assert( RetValue != 0 );
//assert( RetValue != 0 );
}
clk = Abc_Clock();