3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-24 17:21:21 +00:00

remove model converter operator on expr_ref&

This commit is contained in:
Nikolaj Bjorner 2025-09-07 16:37:24 -07:00
parent 90e610eb23
commit d701702735
6 changed files with 2 additions and 43 deletions

View file

@ -93,11 +93,6 @@ public:
this->m_c1->operator()(m);
}
void operator()(expr_ref & fml) override {
this->m_c2->operator()(fml);
this->m_c1->operator()(fml);
}
void operator()(labels_vec & r) override {
this->m_c2->operator()(r);
this->m_c1->operator()(r);
@ -157,11 +152,6 @@ public:
r.append(m_labels.size(), m_labels.data());
}
void operator()(expr_ref& fml) override {
model::scoped_model_completion _scm(m_model, false);
fml = (*m_model)(fml);
}
void get_units(obj_map<expr, bool>& fmls) override {
// no-op
}