mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
This commit is contained in:
parent
637ddf9397
commit
a15da8f9ba
4 changed files with 13 additions and 0 deletions
|
@ -294,6 +294,11 @@ namespace euf {
|
|||
}
|
||||
|
||||
void solver::validate_model(model& mdl) {
|
||||
if (!m_unhandled_functions.empty())
|
||||
return;
|
||||
for (auto* s : m_solvers)
|
||||
if (s && s->has_unhandled())
|
||||
return;
|
||||
model_evaluator ev(mdl);
|
||||
ev.set_model_completion(true);
|
||||
TRACE("model",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue