Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
short circuiting equality consequence appears to have the wrong sign
  • Loading branch information
NikolajBjorner committed Sep 23, 2023
1 parent eff3f5f commit 30d1800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/smt_consequences.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ namespace smt {
lit.neg();

literal lit = mk_diseq(k, v);
literals.push_back(lit);
literals.push_back(~lit);
mk_clause(literals.size(), literals.data(), nullptr);
TRACE("context", display_literals_verbose(tout, literals.size(), literals.data()););
}
Expand Down

0 comments on commit 30d1800

Please sign in to comment.