mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
hard-code quantifier weight to 15
With default settings, the eager threshold is 10 and lazy is 20. 15 puts us in the middle ensuring that lemmas are instantiated when UNSAT and otherwise delayed.
This commit is contained in:
parent
135a4a765f
commit
27d8fa4a34
1 changed files with 1 additions and 1 deletions
|
@ -1183,7 +1183,7 @@ void lemma::mk_expr_core() {
|
|||
m_body = m.mk_quantifier(true, zks.size(),
|
||||
sorts.c_ptr(),
|
||||
names.c_ptr(),
|
||||
m_body, 0, symbol(m_body->get_id()));
|
||||
m_body, 15, symbol(m_body->get_id()));
|
||||
if (m_new_pob) {
|
||||
add_binding(m_pob->get_binding());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue