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

experimental new unsat core based overlap detection

This commit is contained in:
Murphy Berzish 2017-04-12 17:09:35 -04:00
parent eef2bbadad
commit 7207cabc97
5 changed files with 82 additions and 14 deletions

View file

@ -706,6 +706,7 @@ namespace smt {
}
void setup::setup_QF_S() {
m_context.set_use_theory_str_overlap_assumption(true);
m_context.register_plugin(alloc(smt::theory_mi_arith, m_manager, m_params));
m_context.register_plugin(alloc(smt::theory_str, m_manager, m_params));
}
@ -841,6 +842,7 @@ namespace smt {
void setup::setup_str() {
setup_arith();
m_context.set_use_theory_str_overlap_assumption(true);
m_context.register_plugin(alloc(theory_str, m_manager, m_params));
}