3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-07 12:32:24 +00:00

restart projection when found a non-trivial nullified polynomial, and remove is_square_free

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-11-22 06:08:32 -10:00
parent 82f0cfb7cc
commit ac58f53703
2 changed files with 92 additions and 87 deletions

View file

@ -20,6 +20,6 @@ def_module_params('nlsat',
('inline_vars', BOOL, False, "inline variables that can be isolated from equations (not supported in incremental mode)"),
('seed', UINT, 0, "random seed."),
('factor', BOOL, True, "factor polynomials produced during conflict resolution."),
('add_all_coeffs', BOOL, True, "add all polynomial coefficients during projection."),
('add_all_coeffs', BOOL, False, "add all polynomial coefficients during projection."),
('known_sat_assignment_file_name', STRING, "", "the file name of a known solution: used for debugging only")
))