3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-28 19:01:29 +00:00

change the default of param lws_subs_witness_disc to true

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2026-02-24 15:24:35 -10:00
parent 0074de0fce
commit 0835420cc1

View file

@ -25,6 +25,6 @@ def_module_params('nlsat',
('lws', BOOL, True, "apply levelwise."),
('lws_spt_threshold', UINT, 4, "minimum both-side polynomial count to apply spanning tree optimization; < 2 disables spanning tree"),
('lws_witness_subs_lc', BOOL, True, "try substitute the non-nullified witness by the lc"),
('lws_witness_subs_disc', BOOL, False, "try substitute the non-nullified witness by the discriminant"),
('lws_witness_subs_disc', BOOL, True, "try substitute the non-nullified witness by the discriminant"),
('canonicalize', BOOL, True, "canonicalize polynomials.")
))