3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

User control over qi.quick_checker smt_params option

This commit is contained in:
Arie Gurfinkel 2018-05-24 11:17:18 -07:00
parent d06f4bd337
commit 1c06229755
2 changed files with 2 additions and 0 deletions

View file

@ -35,6 +35,7 @@ void qi_params::updt_params(params_ref const & _p) {
m_qi_lazy_threshold = p.qi_lazy_threshold();
m_qi_cost = p.qi_cost();
m_qi_max_eager_multipatterns = p.qi_max_multi_patterns();
m_qi_quick_checker = static_cast<quick_checker_mode>(p.qi_quick_checker());
}
#define DISPLAY_PARAM(X) out << #X"=" << X << std::endl;