Bug fix in &satlut.

This commit is contained in:
Alan Mishchenko 2026-01-17 17:34:52 +07:00
parent 7f6aba463a
commit 41e73dbd8b
1 changed files with 1 additions and 1 deletions

View File

@ -1033,7 +1033,7 @@ int Sbl_ManTestSat( Sbl_Man_t * p, int iPivot )
StartSol = Vec_IntSize(p->vSolInit) + 1;
// StartSol = 30;
while ( fKeepTrying && StartSol-fKeepTrying > 0 )
while ( fKeepTrying && StartSol-fKeepTrying > 0 && StartSol-fKeepTrying < Vec_IntSize(p->vCardVars) )
{
int Count = 0, LitCount = 0;
int nConfBef, nConfAft;