We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f81303f commit 752c999Copy full SHA for 752c999
src/nlsat/nlsat_params.pyg
@@ -3,8 +3,8 @@ def_module_params('nlsat',
3
description='nonlinear solver',
4
export=True,
5
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"),
+ ('simple_check', BOOL, False, "precheck polynomials using variables sign"),
+ ('variable_ordering_strategy', UINT, 0, "Variable Ordering Strategy, 0 for none, 1 for BROWN, 2 for TRIANGULAR, 3 for ONLYPOLY"),
8
('cell_sample', BOOL, True, "cell sample projection"),
9
('lazy', UINT, 0, "how lazy the solver is."),
10
('reorder', BOOL, True, "reorder variables."),
@@ -19,4 +19,3 @@ def_module_params('nlsat',
19
('seed', UINT, 0, "random seed."),
20
('factor', BOOL, True, "factor polynomials produced during conflict resolution.")
21
))
22
-
0 commit comments