3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 09:50:23 +00:00

fix drat checker

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-02-10 18:04:54 -05:00
parent 6b4aec9b74
commit 8b4f3ac6f0
16 changed files with 201 additions and 166 deletions

View file

@ -99,7 +99,9 @@ namespace sat {
m_elim_literals++;
break;
case l_undef:
c[j] = c[i];
if (i != j) {
std::swap(c[j], c[i]);
}
j++;
break;
}