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:
parent
81c2560854
commit
d849b5c637
5 changed files with 149 additions and 53 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue