Commit e3d75484 by Alan Mishchenko

Reversed to a buggy version of reduceDB in complete proof-logging, because it…

Reversed to a buggy version of reduceDB in complete proof-logging, because it works with rollback and it is not used in &gla -pn -L 0.
parent 606341dc
...@@ -1619,10 +1619,10 @@ void sat_solver2_rollback( sat_solver2* s ) ...@@ -1619,10 +1619,10 @@ void sat_solver2_rollback( sat_solver2* s )
if ( s->pPrf1 ) if ( s->pPrf1 )
{ {
veci_resize(&s->claProofs, s->stats.learnts); veci_resize(&s->claProofs, s->stats.learnts);
// Vec_SetShrink(&s->Proofs, s->hProofPivot); Vec_SetShrink(s->pPrf1, s->hProofPivot);
// some weird bug here, which shows only on 64-bits! // some weird bug here, which shows only on 64-bits!
// temporarily, perform more general proof reduction // temporarily, perform more general proof reduction
Sat_ProofReduce( s->pPrf1, &s->claProofs, s->hProofPivot ); // Sat_ProofReduce( s->pPrf1, &s->claProofs, s->hProofPivot );
} }
assert( s->pPrf2 == NULL ); assert( s->pPrf2 == NULL );
// if ( s->pPrf2 ) // if ( s->pPrf2 )
......
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