mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
correct the default options: smt.arith.nla=False
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
4b7bd3a881
commit
f9151a7a8e
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ def_module_params(module_name='smt',
|
|||
('arith.simplex_strategy', UINT, 0, 'simplex strategy for the solver'),
|
||||
('arith.enable_hnf', BOOL, True, 'enable hnf (Hermite Normal Form) cuts'),
|
||||
('arith.bprop_on_pivoted_rows', BOOL, True, 'propagate bounds on rows changed by the pivot operation'),
|
||||
('arith.nla', BOOL, True, 'call nonlinear solver'),
|
||||
('arith.nla', BOOL, False, 'call nonlinear solver'),
|
||||
('arith.print_ext_var_names', BOOL, False, 'print external variable names'),
|
||||
('pb.conflict_frequency', UINT, 1000, 'conflict frequency for Pseudo-Boolean theory'),
|
||||
('pb.learn_complements', BOOL, True, 'learn complement literals for Pseudo-Boolean theory'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue