3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-01-16 19:11:55 -08:00
parent 637ddf9397
commit a15da8f9ba
4 changed files with 13 additions and 0 deletions

View file

@ -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",