3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-30 20:35:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-07-02 03:33:51 -07:00
parent 788de7d614
commit 9e69e1614e
3 changed files with 5 additions and 3 deletions

View file

@ -19,7 +19,7 @@ Author:
namespace polysat {
std::ostream& eq_constraint::display(std::ostream& out) const {
out << p() << (is_positive() ? " == 0 " : " != 0");
out << p() << " == 0";
return display_extra(out);
}