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:
parent
ff7c949be8
commit
28ef9ab9d1
|
@ -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')
|
||||
))
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue