summaryrefslogtreecommitdiffstats
path: root/src/sat/bsat/satSolver.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sat/bsat/satSolver.c')
-rw-r--r--src/sat/bsat/satSolver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sat/bsat/satSolver.c b/src/sat/bsat/satSolver.c
index a13ae040..922f1eb7 100644
--- a/src/sat/bsat/satSolver.c
+++ b/src/sat/bsat/satSolver.c
@@ -888,10 +888,10 @@ int sat_solver_propagate(sat_solver* s)
//printf("sat_solver_propagate\n");
while (hConfl == 0 && s->qtail - s->qhead > 0){
- lit p = s->trail[s->qhead++];
- int v = lit_var(p);
+ lit p = s->trail[s->qhead++];
#ifdef TEST_CNF_LOAD
+ int v = lit_var(p);
if ( s->pCnfFunc )
{
if ( lit_sign(p) )