3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-05 11:36:45 +00:00

disable add_zero_disc(disc) by default

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-11-24 06:22:34 -10:00
parent 784ea42521
commit cc3328be8d

View file

@ -21,7 +21,7 @@ def_module_params('nlsat',
('seed', UINT, 0, "random seed."),
('factor', BOOL, True, "factor polynomials produced during conflict resolution."),
('add_all_coeffs', BOOL, False, "add all polynomial coefficients during projection."),
('zero_disc', BOOL, True, "add_zero_assumption to the vanishing discriminant."),
('zero_disc', BOOL, False, "add_zero_assumption to the vanishing discriminant."),
('known_sat_assignment_file_name', STRING, "", "the file name of a known solution: used for debugging only")
))