3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-15 07:15:26 +00:00
This commit is contained in:
Nikolaj Bjorner 2024-01-30 20:38:01 -08:00
parent 99ebbd6341
commit 50deece29e
2 changed files with 21 additions and 12 deletions

View file

@ -132,7 +132,7 @@ namespace smt {
void context::display_literal_info(std::ostream & out, literal l) const {
smt::display_compact(out, l, m_bool_var2expr.data());
display_literal_smt2(out, l);
display_literal_smt2(out << " " << l << ": ", l);
out << "relevant: " << is_relevant(bool_var2expr(l.var())) << ", val: " << get_assignment(l) << "\n";
}