mirror of
https://github.com/Z3Prover/z3
synced 2025-07-31 08:23:17 +00:00
parent
f2a7bcaf5d
commit
092c25d596
10 changed files with 62 additions and 20 deletions
|
@ -468,6 +468,10 @@ expr_ref model::operator()(expr* t) {
|
|||
return m_mev(t);
|
||||
}
|
||||
|
||||
void model::set_solver(expr_solver* s) {
|
||||
m_mev.set_solver(s);
|
||||
}
|
||||
|
||||
expr_ref_vector model::operator()(expr_ref_vector const& ts) {
|
||||
expr_ref_vector rs(m);
|
||||
for (expr* t : ts) rs.push_back((*this)(t));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue