mirror of https://github.com/YosysHQ/abc.git
Bug fix in the sweeper.
This commit is contained in:
parent
f39369a415
commit
2f46b56ae6
|
|
@ -758,7 +758,10 @@ static Vec_Int_t * Gia_ManGetCex( Gia_Man_t * pGia, Vec_Int_t * vId2Lit, sat_sol
|
|||
Gia_ManForEachPi( pGia, pObj, i )
|
||||
{
|
||||
if ( Gia_ObjId(pGia, pObj) >= Vec_IntSize(vId2Lit) )
|
||||
{
|
||||
Vec_IntPush( vCex, 2 );
|
||||
continue;
|
||||
}
|
||||
LitSat = Vec_IntEntry( vId2Lit, Gia_ObjId(pGia, pObj) );
|
||||
if ( LitSat == 0 )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue