Skip to content

Commit

Permalink
relax unhandled condition
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Nov 14, 2020
1 parent 49a0266 commit 98db260
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/smt/seq_regex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ namespace smt {
literal is_nullable_lit = th.mk_literal(is_nullable);
ctx.mark_as_relevant(is_nullable_lit);
th.add_axiom(~lit, ~len_s_le_i, is_nullable_lit);
th.add_unhandled_expr(is_nullable);
if (str().is_in_re(is_nullable))
th.add_unhandled_expr(is_nullable);
}
}

Expand Down

0 comments on commit 98db260

Please # to comment.