Skip to content

Commit 752c999

Browse files
committed
cleanup
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
1 parent f81303f commit 752c999

File tree

5 files changed

+95
-621
lines changed

5 files changed

+95
-621
lines changed

src/nlsat/nlsat_params.pyg

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ def_module_params('nlsat',
33
description='nonlinear solver',
44
export=True,
55
params=(max_memory_param(),
6-
('linxi_simple_check', BOOL, False, "linxi precheck about variables sign"),
7-
('linxi_variable_ordering_strategy', UINT, 0, "linxi Variable Ordering Strategy, 0 for none, 1 for BROWN, 2 for TRIANGULAR, 3 for ONLYPOLY"),
6+
('simple_check', BOOL, False, "precheck polynomials using variables sign"),
7+
('variable_ordering_strategy', UINT, 0, "Variable Ordering Strategy, 0 for none, 1 for BROWN, 2 for TRIANGULAR, 3 for ONLYPOLY"),
88
('cell_sample', BOOL, True, "cell sample projection"),
99
('lazy', UINT, 0, "how lazy the solver is."),
1010
('reorder', BOOL, True, "reorder variables."),
@@ -19,4 +19,3 @@ def_module_params('nlsat',
1919
('seed', UINT, 0, "random seed."),
2020
('factor', BOOL, True, "factor polynomials produced during conflict resolution.")
2121
))
22-

0 commit comments

Comments
 (0)