mirror of
https://github.com/Z3Prover/z3
synced 2025-07-25 05:37:00 +00:00
parent
f3441c6a9b
commit
05d9e188f8
2 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,7 @@ void smt_params::updt_local_params(params_ref const & _p) {
|
||||||
m_delay_units_threshold = p.delay_units_threshold();
|
m_delay_units_threshold = p.delay_units_threshold();
|
||||||
m_preprocess = _p.get_bool("preprocess", true); // hidden parameter
|
m_preprocess = _p.get_bool("preprocess", true); // hidden parameter
|
||||||
m_timeout = p.timeout();
|
m_timeout = p.timeout();
|
||||||
|
m_max_conflicts = p.max_conflicts();
|
||||||
m_core_validate = p.core_validate();
|
m_core_validate = p.core_validate();
|
||||||
model_params mp(_p);
|
model_params mp(_p);
|
||||||
m_model_compact = mp.compact();
|
m_model_compact = mp.compact();
|
||||||
|
|
|
@ -16,6 +16,7 @@ def_module_params(module_name='smt',
|
||||||
('pull_nested_quantifiers', BOOL, False, 'pull nested quantifiers'),
|
('pull_nested_quantifiers', BOOL, False, 'pull nested quantifiers'),
|
||||||
('refine_inj_axioms', BOOL, True, 'refine injectivity axioms'),
|
('refine_inj_axioms', BOOL, True, 'refine injectivity axioms'),
|
||||||
('timeout', UINT, 0, 'timeout (0 means no timeout)'),
|
('timeout', UINT, 0, 'timeout (0 means no timeout)'),
|
||||||
|
('max_conflicts', UINT, UINT_MAX, 'maximum number of conflicts before giving up.'),
|
||||||
('mbqi', BOOL, True, 'model based quantifier instantiation (MBQI)'),
|
('mbqi', BOOL, True, 'model based quantifier instantiation (MBQI)'),
|
||||||
('mbqi.max_cexs', UINT, 1, 'initial maximal number of counterexamples used in MBQI, each counterexample generates a quantifier instantiation'),
|
('mbqi.max_cexs', UINT, 1, 'initial maximal number of counterexamples used in MBQI, each counterexample generates a quantifier instantiation'),
|
||||||
('mbqi.max_cexs_incr', UINT, 0, 'increment for MBQI_MAX_CEXS, the increment is performed after each round of MBQI'),
|
('mbqi.max_cexs_incr', UINT, 0, 'increment for MBQI_MAX_CEXS, the increment is performed after each round of MBQI'),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue