mirror of
https://github.com/Z3Prover/z3
synced 2026-04-03 10:28:57 +00:00
fixes to model generation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5803c6f202
commit
a5c0ecafda
2 changed files with 8 additions and 1 deletions
|
|
@ -6130,7 +6130,7 @@ lbool seq_rewriter::some_string_in_re(expr_mark& visited, expr* r, unsigned_vect
|
|||
}
|
||||
if (has_bounds) {
|
||||
|
||||
if (any_of(subterms::all(th), [&](expr *t) { return m().is_ite(t); })) {
|
||||
if (any_of(subterms::ground(th), [&](expr *t) { return m().is_ite(t); })) {
|
||||
if (low > 0)
|
||||
exclude.push_back({0, low - 1});
|
||||
if (high < zstring::unicode_max_char())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue