mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 13:58:45 +00:00
Fix a typo
This commit is contained in:
parent
321cad70d6
commit
e7815c703c
|
@ -1293,7 +1293,7 @@ bool lemma::has_binding(app_ref_vector const &binding) {
|
|||
expr *lem = get_expr();
|
||||
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) {
|
||||
unsigned i = 0;
|
||||
|
|
Loading…
Reference in a new issue