mirror of
https://github.com/Z3Prover/z3
synced 2026-03-16 18:20:00 +00:00
fix #7582
This commit is contained in:
parent
fa5a50c4f9
commit
d980ac9a05
4 changed files with 30 additions and 11 deletions
|
|
@ -411,13 +411,14 @@ void elim_unconstrained::update_model_trail(generic_model_converter& mc, vector<
|
|||
case generic_model_converter::instruction::HIDE:
|
||||
break;
|
||||
case generic_model_converter::instruction::ADD:
|
||||
new_def = entry.m_def;
|
||||
(*rp)(new_def);
|
||||
sub->insert(m.mk_const(entry.m_f), new_def, nullptr, nullptr);
|
||||
// new_def = entry.m_def;
|
||||
// (*rp)(new_def);
|
||||
new_def = m.mk_const(entry.m_f);
|
||||
sub->insert(new_def, new_def, nullptr, nullptr);
|
||||
break;
|
||||
}
|
||||
}
|
||||
trail.push(sub.detach(), old_fmls);
|
||||
trail.push(sub.detach(), old_fmls, true);
|
||||
}
|
||||
|
||||
void elim_unconstrained::reduce() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue