mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
Fix binding handling for quantifier free lemmas
This commit is contained in:
parent
a8318b8822
commit
ecf9c629b0
1 changed files with 2 additions and 0 deletions
|
@ -1307,6 +1307,8 @@ bool lemma::has_binding(app_ref_vector const &binding) {
|
|||
|
||||
SASSERT(binding.size() == num_decls);
|
||||
|
||||
if (num_decls == 0) return true;
|
||||
|
||||
for (unsigned off = 0, sz = m_bindings.size(); off < sz; off += num_decls) {
|
||||
unsigned i = 0;
|
||||
for (; i < num_decls; ++i) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue