3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-12-16 12:30:29 -08:00
parent a099972354
commit 122b0fec0f

View file

@ -342,6 +342,11 @@ namespace opt {
}
void opt_solver::get_model_core(model_ref & m) {
if (m_last_model.get()) {
m = m_last_model.get();
return;
}
for (unsigned i = m_models.size(); i-- > 0; ) {
auto* mdl = m_models[i];
if (mdl) {