mirror of
https://github.com/Z3Prover/z3
synced 2026-02-23 16:57:51 +00:00
Add smt.finite_set.lattice_refutation parameter to control lattice refutation code path (#8247)
* Initial plan * Add finite_set.lattice_refutation parameter to smt_params_helper.pyg Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> * Add finite_set.lattice_refutation parameter implementation Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
40efe27066
commit
2f8342a1b3
5 changed files with 8 additions and 3 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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue