3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-19 23:26:30 +00:00
This commit is contained in:
CEisenhofer 2026-05-05 14:58:42 +02:00
parent e7cc24d7ea
commit b65f22ef3b
2 changed files with 19 additions and 12 deletions

View file

@ -34,7 +34,7 @@ namespace seq {
void collect_possible_first_chars(seq_util& seq, euf::sgraph const& sg, expr* str,
unsigned_vector& bounds, bool& may_be_empty) {
may_be_empty = false;
VERIFY(str);
SASSERT(str);
sort* re_sort = nullptr;
VERIFY(!seq.is_re(str, re_sort));
@ -72,6 +72,7 @@ namespace seq {
}
return;
}
std::cout << "Unexpected: " << mk_pp(str, sg.get_manager()) << std::endl;
UNREACHABLE();
}