mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
#5482 fix default case for model construction
port mg_merge functionality from theory_array_base that ensures default values in arrays congruent modulo stores are the same
This commit is contained in:
parent
9b5ec6d004
commit
148cb83b0d
4 changed files with 141 additions and 1 deletions
|
@ -101,6 +101,11 @@ namespace euf {
|
|||
theory_var th_euf_solver::get_th_var(expr* e) const {
|
||||
return get_th_var(ctx.get_enode(e));
|
||||
}
|
||||
|
||||
theory_var th_euf_solver::get_representative(theory_var v) const {
|
||||
euf::enode* r = var2enode(v)->get_root();
|
||||
return get_th_var(r);
|
||||
}
|
||||
|
||||
void th_euf_solver::push_core() {
|
||||
m_var2enode_lim.push_back(m_var2enode.size());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue