mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
fix #5392
This commit is contained in:
parent
897cbf347b
commit
2973d3bdc1
|
@ -608,14 +608,14 @@ namespace smt {
|
||||||
clause * cls = j.get_clause();
|
clause * cls = j.get_clause();
|
||||||
out << "clause ";
|
out << "clause ";
|
||||||
if (cls) out << literal_vector(cls->get_num_literals(), cls->begin());
|
if (cls) out << literal_vector(cls->get_num_literals(), cls->begin());
|
||||||
if (cls) display_literals_smt2(out << "\n", cls->get_num_literals(), cls->begin());
|
// if (cls) display_literals_smt2(out << "\n", cls->get_num_literals(), cls->begin());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case b_justification::JUSTIFICATION: {
|
case b_justification::JUSTIFICATION: {
|
||||||
literal_vector lits;
|
literal_vector lits;
|
||||||
const_cast<conflict_resolution&>(*m_conflict_resolution).justification2literals(j.get_justification(), lits);
|
const_cast<conflict_resolution&>(*m_conflict_resolution).justification2literals(j.get_justification(), lits);
|
||||||
out << "justification " << j.get_justification()->get_from_theory() << ": ";
|
out << "justification " << j.get_justification()->get_from_theory() << ": ";
|
||||||
display_literals_smt2(out, lits);
|
// display_literals_smt2(out, lits);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue