mirror of
https://github.com/Z3Prover/z3
synced 2026-06-10 19:07:18 +00:00
fix #9657
This commit is contained in:
parent
b34a7b4319
commit
0b56db7f07
4 changed files with 21 additions and 11 deletions
|
|
@ -668,7 +668,7 @@ template<typename Config>
|
|||
void rewriter_tpl<Config>::display_bindings(std::ostream& out) {
|
||||
for (unsigned i = 0; i < m_bindings.size(); ++i) {
|
||||
if (m_bindings[i])
|
||||
out << i << ": " << mk_ismt2_pp(m_bindings[i], m()) << ";\n";
|
||||
out << i << ": " << mk_ismt2_pp(m_bindings[i], m()) << " : " << mk_pp(m_bindings[i]->get_sort(), m()) << ";\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue