mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
parent
bcbe802b27
commit
76735476d4
3 changed files with 6 additions and 6 deletions
|
@ -1970,8 +1970,9 @@ bool theory_seq::check_length_coherence() {
|
|||
}
|
||||
|
||||
bool theory_seq::fixed_length(bool is_zero) {
|
||||
bool found = false;
|
||||
for (auto e : m_length) {
|
||||
bool found = false;
|
||||
for (unsigned i = 0; i < m_length.size(); ++i) {
|
||||
expr* e = m_length.get(i);
|
||||
if (fixed_length(e, is_zero)) {
|
||||
found = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue