mirror of
https://github.com/Z3Prover/z3
synced 2026-07-15 03:25:43 +00:00
Probably quite instable, but included the splitting into the legacy solver
This commit is contained in:
parent
871a2b3bc8
commit
1feb610daa
6 changed files with 110 additions and 30 deletions
|
|
@ -408,6 +408,11 @@ public:
|
|||
|
||||
void simplify_split(split_set& s) { m_split.simplify(s); }
|
||||
|
||||
// decompose a membership constraint into a set of pairs of regex splits
|
||||
std::pair<expr*, expr*> split_membership(expr* str, expr* regex, unsigned threshold, split_set& result) const {
|
||||
return m_split.split_membership(str, regex, threshold, result);
|
||||
}
|
||||
|
||||
/**
|
||||
* check if regular expression is of the form all ++ s ++ all ++ t + u ++ all, where, s, t, u are sequences
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue