mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
move arithmetical mbp functionality to model_based_opt
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7fc294d329
commit
b66d457b19
6 changed files with 76 additions and 106 deletions
|
@ -522,5 +522,12 @@ void model_evaluator::operator()(expr * t, expr_ref & result) {
|
|||
m_imp->operator()(t, result);
|
||||
}
|
||||
|
||||
expr_ref model_evaluator::operator()(expr * t) {
|
||||
TRACE("model_evaluator", tout << mk_ismt2_pp(t, m()) << "\n";);
|
||||
expr_ref result(m());
|
||||
m_imp->operator()(t, result);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue