3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-12 02:04:43 +00:00

pretty printing

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-06-20 09:49:31 -07:00
parent 4bcfcecbbb
commit 4066087138
4 changed files with 42 additions and 4 deletions

View file

@ -29,7 +29,7 @@ namespace polysat {
void ule_constraint::narrow(solver& s) {
LOG_H3("Narrowing " << *this);
LOG("Assignment: " << s.assignment());
LOG("Assignment: " << assignments_pp(s));
auto p = lhs().subst_val(s.assignment());
LOG("Substituted LHS: " << lhs() << " := " << p);
auto q = rhs().subst_val(s.assignment());