mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
bugs in: - rewriting of 0-ary expressions was incomplete - sharing annotations when a node has two theories attached it is shared - sharing of const of an array Remove unreadable part of pretty printer for lp solver.
This commit is contained in:
parent
3764eb1959
commit
72f6271d82
13 changed files with 70 additions and 38 deletions
|
@ -57,7 +57,11 @@ namespace arith {
|
|||
if (ctx.is_shared(var2enode(v)))
|
||||
out << ", shared";
|
||||
}
|
||||
out << " := " << mk_bounded_pp(var2expr(v), m) << "\n";
|
||||
expr* e = var2expr(v);
|
||||
out << " := ";
|
||||
if (e)
|
||||
out << "#" << e->get_id() << ": ";
|
||||
out << mk_bounded_pp(var2expr(v), m) << "\n";
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue