From 41e73dbd8b2e144bda9b8377b66397d979ae04fc Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sat, 17 Jan 2026 17:34:52 +0700 Subject: [PATCH] Bug fix in &satlut. --- src/aig/gia/giaSatLut.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aig/gia/giaSatLut.c b/src/aig/gia/giaSatLut.c index cc6068a96..679c9e58b 100644 --- a/src/aig/gia/giaSatLut.c +++ b/src/aig/gia/giaSatLut.c @@ -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;