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:
parent
eef2bbadad
commit
7207cabc97
5 changed files with 82 additions and 14 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue