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

fix set-up

This commit is contained in:
Thai Trinh 2017-12-08 18:45:56 +08:00
parent 3a5c30bd9b
commit b181d9d5fa

View file

@ -727,10 +727,10 @@ namespace smt {
setup_str(); setup_str();
} }
else if (m_params.m_string_solver == "seq") { else if (m_params.m_string_solver == "seq") {
setup_seq(); setup_unknown();
} }
else if (m_params.m_string_solver == "auto") { else if (m_params.m_string_solver == "auto") {
setup_seq(); setup_unknown();
} }
else { else {
throw default_exception("invalid parameter for smt.string_solver, valid options are 'z3str3', 'seq', 'auto'"); throw default_exception("invalid parameter for smt.string_solver, valid options are 'z3str3', 'seq', 'auto'");