mirror of
https://github.com/Z3Prover/z3
synced 2026-04-04 18:59:02 +00:00
remove unused fields
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6a6f9b1892
commit
9f6eb4f455
2 changed files with 1 additions and 26 deletions
|
|
@ -605,26 +605,6 @@ namespace seq {
|
|||
out << "?" << cs.m_var->id()
|
||||
<< " → ?" << cs.m_val->id();
|
||||
}
|
||||
// side constraints: string equalities
|
||||
for (auto const* eq : e->side_str_eq()) {
|
||||
if (!first) out << "<br/>";
|
||||
first = false;
|
||||
out << "<font color=\"gray\">"
|
||||
<< snode_label_html(eq->m_lhs, m)
|
||||
<< " = "
|
||||
<< snode_label_html(eq->m_rhs, m)
|
||||
<< "</font>";
|
||||
}
|
||||
// side constraints: regex memberships
|
||||
for (auto const* mem : e->side_str_mem()) {
|
||||
if (!first) out << "<br/>";
|
||||
first = false;
|
||||
out << "<font color=\"gray\">"
|
||||
<< snode_label_html(mem->m_str, m)
|
||||
<< " ∈ "
|
||||
<< snode_label_html(mem->m_regex, m)
|
||||
<< "</font>";
|
||||
}
|
||||
// side constraints: integer equalities/inequalities
|
||||
for (auto const& ic : e->side_int()) {
|
||||
if (!first) out << "<br/>";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue