3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 18:31:49 +00:00

relax unhandled condition

This commit is contained in:
Nikolaj Bjorner 2020-11-14 14:58:43 -08:00
parent 49a0266c6a
commit 98db260a93

View file

@ -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);
}
}