Skip to content

Commit 41e73db

Browse files
committed
Bug fix in &satlut.
1 parent 7f6aba4 commit 41e73db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aig/gia/giaSatLut.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,7 @@ int Sbl_ManTestSat( Sbl_Man_t * p, int iPivot )
10331033

10341034
StartSol = Vec_IntSize(p->vSolInit) + 1;
10351035
// StartSol = 30;
1036-
while ( fKeepTrying && StartSol-fKeepTrying > 0 )
1036+
while ( fKeepTrying && StartSol-fKeepTrying > 0 && StartSol-fKeepTrying < Vec_IntSize(p->vCardVars) )
10371037
{
10381038
int Count = 0, LitCount = 0;
10391039
int nConfBef, nConfAft;

0 commit comments

Comments
 (0)