Skip to content

Commit

Permalink
fix crash
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Apr 19, 2020
1 parent 0fe2d3d commit 99c90d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/seq_axioms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ void seq_axioms::add_extract_axiom(expr* e) {
literal l_ge_0 = mk_ge(l, 0);
literal l_le_0 = mk_le(l, 0);
literal ls_le_0 = mk_le(ls, 0);
literal le_is_0 = mk_eq(le, 0);
literal le_is_0 = mk_eq(le, zero);


// 0 <= i & i <= |s| & 0 <= l => xey = s
Expand Down

0 comments on commit 99c90d2

Please sign in to comment.