mirror of https://github.com/YosysHQ/abc.git
Sweeper condition complement bug-fix.
This commit is contained in:
parent
3b8095a671
commit
c8bfb82688
|
|
@ -901,7 +901,7 @@ int Gia_SweeperCondCheckUnsat( Gia_Man_t * pGia )
|
||||||
{
|
{
|
||||||
iLitAig = Gia_SweeperProbeLit( pGia, ProbeId );
|
iLitAig = Gia_SweeperProbeLit( pGia, ProbeId );
|
||||||
Gia_ManCnfNodeAddToSolver( p, Abc_Lit2Var(iLitAig) );
|
Gia_ManCnfNodeAddToSolver( p, Abc_Lit2Var(iLitAig) );
|
||||||
Vec_IntPush( p->vCondAssump, Swp_ManLit2Lit(p, iLitAig) );
|
Vec_IntPush( p->vCondAssump, Abc_LitNot(Swp_ManLit2Lit(p, iLitAig)) );
|
||||||
}
|
}
|
||||||
sat_solver_compress( p->pSat );
|
sat_solver_compress( p->pSat );
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue