Commit ca39b892 by Alan Mishchenko

Compiler warning about unused variable.

parent 7d3976a7
......@@ -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) )
......
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