mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
fix #5710
This commit is contained in:
parent
a099972354
commit
122b0fec0f
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue