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

Merge pull request #1000 from mtrberzi/theory_str-smt-setup

smt_setup for strings/sequences
This commit is contained in:
Nikolaj Bjorner 2017-05-02 20:44:23 -07:00 committed by GitHub
commit 52dfdedb9b
7 changed files with 53 additions and 8 deletions

View file

@ -214,6 +214,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),
@ -282,7 +289,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);
}