3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00

fixes, tests

This commit is contained in:
Nikolaj Bjorner 2021-09-25 08:38:48 -07:00
parent e6c413b249
commit a574eebd05
9 changed files with 110 additions and 48 deletions

View file

@ -79,7 +79,7 @@ namespace polysat {
return;
}
// k <= p => p - k <= - k - 1
if (m_lhs.is_val()) {
if (m_lhs.is_val() && false) {
pdd k = m_lhs;
m_lhs = m_rhs - k;
m_rhs = - k - 1;