3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

z3str3: add auxiliary str.substr axioms (#4617)

This commit is contained in:
Murphy Berzish 2020-08-06 14:00:50 -05:00 committed by GitHub
parent 4fa2e23704
commit f4ec63f39c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1720,6 +1720,31 @@ namespace smt {
rw(case3_rw);
assert_axiom(case3_rw);
}
// Auxiliary axioms
{
// base = "" --> (str.substr base pos len) = ""
{
expr_ref premise(ctx.mk_eq_atom(substrBase, mk_string("")), m);
expr_ref conclusion(ctx.mk_eq_atom(expr, mk_string("")), m);
expr_ref axiom(m.mk_implies(premise, conclusion), m);
assert_axiom_rw(axiom);
}
// len( (str.substr base pos len) ) <= len(base)
{
expr_ref axiom(m_autil.mk_le(mk_strlen(expr), mk_strlen(substrBase)), m);
assert_axiom_rw(axiom);
}
// len >= 0 --> len( (str.substr base pos len) ) <= len
{
expr_ref premise(m_autil.mk_ge(substrLen, mk_int(0)), m);
expr_ref conclusion(m_autil.mk_le(mk_strlen(expr), substrLen), m);
expr_ref axiom(m.mk_implies(premise, conclusion), m);
assert_axiom_rw(axiom);
}
}
}
// (str.replace s t t') is the string obtained by replacing the first occurrence