mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
fix documentation/default bug. #445
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
84cf208d5f
commit
a6e1c70eab
|
@ -257,7 +257,7 @@ extern "C" {
|
||||||
|
|
||||||
|
|
||||||
// some boilerplate stolen from Z3_solver_check
|
// some boilerplate stolen from Z3_solver_check
|
||||||
unsigned timeout = p?to_params(p)->m_params.get_uint("timeout", mk_c(c)->get_timeout()):0;
|
unsigned timeout = p?to_params(p)->m_params.get_uint("timeout", mk_c(c)->get_timeout()):UINT_MAX;
|
||||||
unsigned rlimit = p?to_params(p)->m_params.get_uint("rlimit", mk_c(c)->get_rlimit()):0;
|
unsigned rlimit = p?to_params(p)->m_params.get_uint("rlimit", mk_c(c)->get_rlimit()):0;
|
||||||
bool use_ctrl_c = p?to_params(p)->m_params.get_bool("ctrl_c", false): false;
|
bool use_ctrl_c = p?to_params(p)->m_params.get_bool("ctrl_c", false): false;
|
||||||
cancel_eh<reslimit> eh(mk_c(c)->m().limit());
|
cancel_eh<reslimit> eh(mk_c(c)->m().limit());
|
||||||
|
|
|
@ -15,7 +15,7 @@ def_module_params(module_name='smt',
|
||||||
('delay_units_threshold', UINT, 32, 'maximum number of learned unit clauses before restarting, ingored if delay_units is false'),
|
('delay_units_threshold', UINT, 32, 'maximum number of learned unit clauses before restarting, ingored if delay_units is false'),
|
||||||
('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 (in milliseconds) (0 means no timeout)'),
|
('timeout', UINT, UINT_MAX, 'timeout (in milliseconds) (0 means immediate timeout)'),
|
||||||
('rlimit', UINT, 0, 'resource limit (0 means no limit)'),
|
('rlimit', UINT, 0, 'resource limit (0 means no limit)'),
|
||||||
('max_conflicts', UINT, UINT_MAX, 'maximum number of conflicts before giving up.'),
|
('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)'),
|
||||||
|
|
Loading…
Reference in a new issue