mirror of
https://github.com/Z3Prover/z3
synced 2026-01-21 01:24:43 +00:00
Add finite_set.lattice_refutation parameter implementation
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
f04723ca27
commit
111b82af80
3 changed files with 3 additions and 1 deletions
|
|
@ -51,6 +51,7 @@ void smt_params::updt_local_params(params_ref const & _p) {
|
|||
m_core_validate = p.core_validate();
|
||||
m_sls_enable = p.sls_enable();
|
||||
m_sls_parallel = p.sls_parallel();
|
||||
m_finite_set_lattice_refutation = p.finite_set_lattice_refutation();
|
||||
m_logic = _p.get_sym("logic", m_logic);
|
||||
m_string_solver = p.string_solver();
|
||||
m_up_persist_clauses = p.up_persist_clauses();
|
||||
|
|
|
|||
|
|
@ -114,6 +114,7 @@ struct smt_params : public preprocessor_params,
|
|||
symbol m_proof_log;
|
||||
bool m_sls_enable = false;
|
||||
bool m_sls_parallel = true;
|
||||
bool m_finite_set_lattice_refutation = true;
|
||||
|
||||
// -----------------------------------
|
||||
//
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ Module Name:
|
|||
#include "smt/smt_theory.h"
|
||||
#include "smt/theory_finite_set.h"
|
||||
#include "smt/smt_context.h"
|
||||
#include "iostream"
|
||||
#include <iostream>
|
||||
|
||||
const int NUM_WORDS = 5;
|
||||
// some example have shown, the introduction of large conflict clauses can severely slow down refutation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue