3
0
Fork 0
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:
Arie Gurfinkel 2017-08-17 17:18:09 -04:00
parent 135a4a765f
commit 27d8fa4a34

View file

@ -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());
}