3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

bug fixes in nullability check

@veanes @cdstanford
This commit is contained in:
Nikolaj Bjorner 2020-11-13 17:05:10 -08:00
parent c15001bf69
commit 9fa17a432a
2 changed files with 5 additions and 4 deletions

View file

@ -323,6 +323,7 @@ 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);
}
}