mirror of https://github.com/YosysHQ/abc.git
Remove assertions when the solver becomes UNSAT after adding constraints in 'scorr -c'.
This commit is contained in:
parent
3b4e9573bc
commit
4dc569c134
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue