mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 19:02:02 +00:00
Fix a typo
This commit is contained in:
parent
321cad70d6
commit
e7815c703c
1 changed files with 1 additions and 1 deletions
|
@ -1293,7 +1293,7 @@ bool lemma::has_binding(app_ref_vector const &binding) {
|
||||||
expr *lem = get_expr();
|
expr *lem = get_expr();
|
||||||
unsigned num_decls = to_quantifier(lem)->get_num_decls();
|
unsigned num_decls = to_quantifier(lem)->get_num_decls();
|
||||||
|
|
||||||
SASSERT(bindings.size() == num_decls);
|
SASSERT(binding.size() == num_decls);
|
||||||
|
|
||||||
for (unsigned off = 0, sz = m_bindings.size(); off < sz; off += num_decls) {
|
for (unsigned off = 0, sz = m_bindings.size(); off < sz; off += num_decls) {
|
||||||
unsigned i = 0;
|
unsigned i = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue