3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-12 10:06:23 +00:00

Bug fixes

This commit is contained in:
CEisenhofer 2026-06-26 16:12:52 +02:00
parent 1feb610daa
commit bbe473cb8e
3 changed files with 25 additions and 31 deletions

View file

@ -409,7 +409,7 @@ 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 {
std::pair<expr_ref, expr_ref> split_membership(expr* str, expr* regex, unsigned threshold, split_set& result) const {
return m_split.split_membership(str, regex, threshold, result);
}