3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

Fix a typo

This commit is contained in:
Arie Gurfinkel 2017-09-29 16:19:48 -04:00
parent 321cad70d6
commit e7815c703c

View file

@ -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;