3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-19 15:04:42 +00:00

canonicalize polynomials in nlsat

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-12-10 07:56:29 -10:00
parent 3004222f15
commit 1cb0743e2b
6 changed files with 14 additions and 12 deletions

View file

@ -23,5 +23,6 @@ def_module_params('nlsat',
('add_all_coeffs', BOOL, False, "add all polynomial coefficients during projection."),
('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"),
('apply_levelwise', BOOL, True, "apply levelwise.")
('apply_levelwise', BOOL, True, "apply levelwise."),
('canonicalize', BOOL, True, "canonicalize polynomials.")
))