3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

smt_setup framework, all hooks to theory_str are redirected to theory_seq

This commit is contained in:
Murphy Berzish 2017-05-02 17:16:35 -04:00
parent 48e37b0e16
commit 92755b0185
7 changed files with 53 additions and 8 deletions

View file

@ -213,6 +213,13 @@ struct smt_params : public preprocessor_params,
bool m_dump_goal_as_smt;
bool m_auto_config;
// -----------------------------------
//
// Solver selection
//
// -----------------------------------
symbol m_string_solver;
smt_params(params_ref const & p = params_ref()):
m_display_proof(false),
m_display_dot_proof(false),
@ -281,7 +288,8 @@ struct smt_params : public preprocessor_params,
m_at_labels_cex(false),
m_check_at_labels(false),
m_dump_goal_as_smt(false),
m_auto_config(true) {
m_auto_config(true),
m_string_solver(symbol("seq")){
updt_local_params(p);
}