Skip to content

Commit

Permalink
add slice solver option to command context
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Oct 8, 2024
1 parent 8a95dd4 commit cfd00ad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cmd_context/cmd_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Module Name:
#include "solver/smt_logics.h"
#include "cmd_context/basic_cmds.h"
#include "cmd_context/cmd_context.h"
#include "solver/slice_solver.h"
#include <iostream>

func_decls::func_decls(ast_manager & m, func_decl * f):
Expand Down Expand Up @@ -2257,6 +2258,7 @@ void cmd_context::mk_solver() {
params_ref p;
m_params.get_solver_params(p, proofs_enabled, models_enabled, unsat_core_enabled);
m_solver = (*m_solver_factory)(m(), p, proofs_enabled, models_enabled, unsat_core_enabled, m_logic);
m_solver = mk_slice_solver(m_solver.get());
}


Expand Down

0 comments on commit cfd00ad

Please sign in to comment.