mirror of
https://github.com/Z3Prover/z3
synced 2026-01-18 08:18:55 +00:00
t
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
653c297400
commit
d0b740bd17
3 changed files with 2 additions and 3 deletions
|
|
@ -127,7 +127,6 @@ struct levelwise::impl {
|
|||
chain.reset();
|
||||
m_cache.psc_chain(p, d, x, chain);
|
||||
polynomial_ref disc(m_pm);
|
||||
// Iterate forward: S[0] is the resultant (after reverse in psc_chain)
|
||||
for (unsigned i = 0; i < chain.size(); ++i) {
|
||||
disc = polynomial_ref(chain.get(i), m_pm);
|
||||
if (!disc || is_zero(disc))
|
||||
|
|
|
|||
|
|
@ -23,6 +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."),
|
||||
('lws', BOOL, True, "apply levelwise."),
|
||||
('canonicalize', BOOL, True, "canonicalize polynomials.")
|
||||
))
|
||||
|
|
|
|||
|
|
@ -307,7 +307,7 @@ namespace nlsat {
|
|||
m_check_lemmas = p.check_lemmas();
|
||||
m_variable_ordering_strategy = p.variable_ordering_strategy();
|
||||
m_debug_known_solution_file_name = p.known_sat_assignment_file_name();
|
||||
m_apply_lws = p.apply_levelwise();
|
||||
m_apply_lws = p.lws();
|
||||
m_check_lemmas |= !(m_debug_known_solution_file_name.empty());
|
||||
m_cell_sample = p.cell_sample();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue