3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-18 01:50:17 +00:00

Prevent unsoudness because of missing length propagation

This commit is contained in:
CEisenhofer 2026-04-02 14:34:46 +02:00
parent 1e567a4a26
commit 1282e4de11
4 changed files with 103 additions and 2 deletions

View file

@ -576,7 +576,7 @@ static void test_minterm_full_char() {
seq::seq_regex regex(sg);
sort_ref str_sort(seq.str.mk_string_sort(), m);
expr_ref re(seq.re.mk_full_char(str_sort), m);
expr_ref re(seq.re.mk_full_char(seq.re.mk_re(str_sort)), m);
char_set cs = regex.minterm_to_char_set(re);
std::cout << " full_char char_count = " << cs.char_count() << "\n";
SASSERT(cs.is_full(seq.max_char()));