3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-22 01:54:44 +00:00

Revert "make normalize optional"

This reverts commit c80cfb0b8e.
This commit is contained in:
Lev Nachmanson 2025-12-18 10:47:40 -10:00
parent cc56749e84
commit 7c14b5eebb
4 changed files with 0 additions and 7 deletions

View file

@ -248,7 +248,6 @@ namespace nlsat {
stats m_stats;
std::string m_debug_known_solution_file_name;
bool m_apply_lws;
bool m_lws_norm;
imp(solver& s, ctx& c):
m_ctx(c),
m_solver(s),
@ -309,7 +308,6 @@ namespace nlsat {
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_lws_norm = p.lws_norm();
m_check_lemmas |= !(m_debug_known_solution_file_name.empty());
m_cell_sample = p.cell_sample();
@ -4637,7 +4635,6 @@ namespace nlsat {
}
bool solver::apply_levelwise() const { return m_imp->m_apply_lws; }
bool solver::lws_norm() const { return m_imp->m_lws_norm; }
};