3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-23 04:38:53 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-12-03 20:34:56 +01:00
parent eec153bb57
commit 2f6a9ba39b
3 changed files with 5 additions and 5 deletions

View file

@ -30,9 +30,9 @@ namespace smt {
else if (*this == null_literal)
out << "null";
else if (sign())
out << "(not " << mk_bounded_pp(bool_var2expr_map[var()], m) << ")";
out << "(not " << mk_bounded_pp(bool_var2expr_map[var()], m, 3) << ")";
else
out << mk_bounded_pp(bool_var2expr_map[var()], m);
out << mk_bounded_pp(bool_var2expr_map[var()], m, 3);
}
void literal::display_compact(std::ostream & out, expr * const * bool_var2expr_map) const {