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:
parent
6af61fa0f4
commit
f89e133d52
2 changed files with 1 additions and 26 deletions
|
|
@ -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 << "))";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue