3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-29 09:28:45 +00:00

string to regex approximation used to strengthen membership constraints (#4610)

* string to regex approximation used to strengthen membership constraints

* fixed pull request comments
This commit is contained in:
Margus Veanes 2020-08-01 16:45:00 -07:00 committed by GitHub
parent fb035c0634
commit 8137143ada
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 98 additions and 3 deletions

View file

@ -474,6 +474,8 @@ public:
bool is_loop(expr const* n, expr*& body, expr*& lo) const;
unsigned min_length(expr* r) const;
unsigned max_length(expr* r) const;
bool is_epsilon(expr* r) const;
app* mk_epsilon(sort* seq_sort);
};
str str;
re re;