Commit ca39b892 by Alan Mishchenko

Compiler warning about unused variable.

parent 7d3976a7
...@@ -889,9 +889,9 @@ int sat_solver_propagate(sat_solver* s) ...@@ -889,9 +889,9 @@ int sat_solver_propagate(sat_solver* s)
//printf("sat_solver_propagate\n"); //printf("sat_solver_propagate\n");
while (hConfl == 0 && s->qtail - s->qhead > 0){ while (hConfl == 0 && s->qtail - s->qhead > 0){
lit p = s->trail[s->qhead++]; lit p = s->trail[s->qhead++];
int v = lit_var(p);
#ifdef TEST_CNF_LOAD #ifdef TEST_CNF_LOAD
int v = lit_var(p);
if ( s->pCnfFunc ) if ( s->pCnfFunc )
{ {
if ( lit_sign(p) ) if ( lit_sign(p) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment