3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00
This commit is contained in:
Nikolaj Bjorner 2023-01-04 13:05:45 -08:00
parent aa080a6b19
commit ef10119005
3 changed files with 6 additions and 6 deletions

View file

@ -179,8 +179,8 @@ public:
m_preprocess_state(*this),
m_preprocess(m, p, m_preprocess_state),
m_trail(m_preprocess_state.m_trail),
m_dep(m, m_trail),
m_solver(p, m.limit()),
m_dep(m, m_trail),
m_assumptions(m), m_core(m), m_ors(m), m_aux_fmls(m), m_internalized_fmls(m),
m_map(m),
m_mc(alloc(generic_model_converter, m, "sat-smt-solver")) {

View file

@ -48,11 +48,11 @@ namespace euf {
m_unhandled_functions(m),
m_to_m(&m),
m_to_si(&si),
m_values(m),
m_clause_visitor(m),
m_smt_proof_checker(m, p),
m_clause(m),
m_expr_args(m)
m_clause(m),
m_expr_args(m),
m_values(m)
{
updt_params(p);
m_relevancy.set_enabled(get_config().m_relevancy_lvl > 2);