mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix concat_axiom loop in propagate(): compare against size()......
This commit is contained in:
parent
b494804c9c
commit
e521ab2c3a
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ void theory_str::propagate() {
|
|||
}
|
||||
m_str_eq_todo.reset();
|
||||
|
||||
for (unsigned i = 0; i < m_concat_axiom_todo.empty(); ++i) {
|
||||
for (unsigned i = 0; i < m_concat_axiom_todo.size(); ++i) {
|
||||
instantiate_concat_axiom(m_concat_axiom_todo[i]);
|
||||
}
|
||||
m_concat_axiom_todo.reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue