Skip to content

Commit

Permalink
install importlib-resources for ubuntu doc
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Dec 4, 2023
1 parent de75692 commit f98b42a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sat/smt/array_axioms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,8 @@ namespace array {
sel2 = a.mk_select(args2);
return
ctx.propagate(e_internalize(sel1), ndef1, array_axiom()) ||
ctx.propagate(e_internalize(sel2), ndef2, array_axiom());
ctx.propagate(e_internalize(sel2), ndef2, array_axiom()) ||
prop;
}
// default(A) == default(B)
if (ctx.propagate(ndef1, ndef2, array_axiom()))
Expand Down

0 comments on commit f98b42a

Please sign in to comment.