Skip to content

Commit

Permalink
build fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Nov 17, 2023
1 parent b9455c3 commit a9f9d3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qe/mbp/mbp_arrays_tg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit a9f9d3d

Please sign in to comment.