mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
consolidate model.compact and model_compress #2704
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1a9dfc5e80
commit
cb600a9329
10 changed files with 12 additions and 20 deletions
|
@ -18,7 +18,6 @@ Revision History:
|
|||
--*/
|
||||
#include "smt/params/smt_params.h"
|
||||
#include "smt/params/smt_params_helper.hpp"
|
||||
#include "model/model_params.hpp"
|
||||
#include "util/gparams.h"
|
||||
|
||||
void smt_params::updt_local_params(params_ref const & _p) {
|
||||
|
@ -42,8 +41,6 @@ void smt_params::updt_local_params(params_ref const & _p) {
|
|||
m_core_validate = p.core_validate();
|
||||
m_logic = _p.get_sym("logic", m_logic);
|
||||
m_string_solver = p.string_solver();
|
||||
model_params mp(_p);
|
||||
m_model_compact = mp.compact();
|
||||
if (_p.get_bool("arith.greatest_error_pivot", false))
|
||||
m_arith_pivot_strategy = ARITH_PIVOT_GREATEST_ERROR;
|
||||
else if (_p.get_bool("arith.least_error_pivot", false))
|
||||
|
@ -144,7 +141,6 @@ void smt_params::display(std::ostream & out) const {
|
|||
DISPLAY_PARAM(m_display_ll_bool_var2expr);
|
||||
|
||||
DISPLAY_PARAM(m_model);
|
||||
DISPLAY_PARAM(m_model_compact);
|
||||
DISPLAY_PARAM(m_model_on_timeout);
|
||||
DISPLAY_PARAM(m_model_on_final_check);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue