mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +00:00
build fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b9455c3692
commit
a9f9d3ddf4
|
@ -109,7 +109,7 @@ struct mbp_array_tg::impl {
|
|||
bool is_rd_wr(expr *t) {
|
||||
expr* a, *idx;
|
||||
return m_array_util.is_select1(t, a, idx) &&
|
||||
m_array_util.is_store(a) &
|
||||
m_array_util.is_store(a) &&
|
||||
has_stores(a);
|
||||
}
|
||||
|
||||
|
@ -208,7 +208,7 @@ struct mbp_array_tg::impl {
|
|||
if (in) {
|
||||
SASSERT(m_mdl.are_equal(j, eq_index));
|
||||
peq p_new =
|
||||
mk_wr_peq(to_app(a, p.rhs(), indices);
|
||||
mk_wr_peq(a, p.rhs(), indices);
|
||||
m_tg.add_eq(j, eq_index);
|
||||
expr_ref p_new_expr(m);
|
||||
p_new_expr = is_neg ? m.mk_not(p_new.mk_peq()) : p_new.mk_peq();
|
||||
|
|
Loading…
Reference in a new issue