mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
missing files
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
905cf08e5d
commit
c5f1f8ba59
8 changed files with 6588 additions and 0 deletions
13
src/util/lp/lp_params.pyg
Normal file
13
src/util/lp/lp_params.pyg
Normal file
|
@ -0,0 +1,13 @@
|
|||
def_module_params('lp',
|
||||
export=True,
|
||||
params=(
|
||||
('rep_freq', UINT, 0, 'the report frequency, in how many iterations print the cost and other info '),
|
||||
('min', BOOL, False, 'minimize cost'),
|
||||
('presolve_with_dbl', BOOL, True, 'presolve with double'),
|
||||
('print_stats', BOOL, False, 'print statistic'),
|
||||
('simplex_strategy', UINT, 0, 'simplex strategy for the solver'),
|
||||
('bprop_on_pivoted_rows', BOOL, True, 'propagate bounds on rows changed by the pivot operation')
|
||||
))
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue