3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00

User option to enable starting spacer from a given level

This commit is contained in:
Matteo Marescotti 2018-03-15 16:30:42 -04:00 committed by Arie Gurfinkel
parent ff7c949be8
commit 28ef9ab9d1
2 changed files with 3 additions and 2 deletions

View file

@ -192,7 +192,8 @@ def_module_params('fixedpoint',
('spacer.quic_gen_normalize', BOOL, True, 'normalize cube before quantified generalization'),
('spacer.share_lemmas', BOOL, False, "Share frame lemmas"),
('spacer.share_invariants', BOOL, False, "Share invariants lemmas"),
))
('spacer.from_level', UINT, 0, 'starting level to explore')
))

View file

@ -170,7 +170,7 @@ lbool dl_interface::query(expr * query)
return l_false;
}
return m_context->solve();
return m_context->solve(m_ctx.get_params().spacer_from_level());
}