3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-06 19:12:45 +00:00

revert the behavior of add_zero_assumption (#7631)

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-04-28 16:07:46 -07:00 committed by GitHub
parent 6af61fa0f4
commit f89e133d52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 26 deletions

View file

@ -3400,7 +3400,7 @@ namespace nlsat {
case atom::ROOT_GT: out << "(> "; proc(out, a.x()); out << " " << yn << ")"; break;
case atom::ROOT_LE: out << "(<= "; proc(out, a.x()); out << " " << yn << ")"; break;
case atom::ROOT_GE: out << "(>= "; proc(out, a.x()); out << " " << yn << ")"; break;
case atom::ROOT_EQ: out << "(= "; proc(out, a.x()); out << " " << yn << ")"; NOT_IMPLEMENTED_YET(); break;
case atom::ROOT_EQ: out << "(= "; proc(out, a.x()); out << " " << yn << ")"; break;
default: UNREACHABLE(); break;
}
out << "))";