3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00

experiment with sat solver

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-05-14 19:40:58 -07:00
parent 81c2560854
commit d849b5c637
5 changed files with 149 additions and 53 deletions

View file

@ -1421,6 +1421,8 @@ namespace sat {
};
void simplifier::elim_vars() {
if (!m_elim_vars) return;
elim_var_report rpt(*this);
bool_var_vector vars;
order_vars_for_elim(vars);
@ -1460,6 +1462,7 @@ namespace sat {
m_res_cls_cutoff2 = p.resolution_cls_cutoff2();
m_subsumption = p.subsumption();
m_subsumption_limit = p.subsumption_limit();
m_elim_vars = p.elim_vars();
}
void simplifier::collect_param_descrs(param_descrs & r) {