mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
theory_str params module, WIP
This commit is contained in:
parent
09053b831d
commit
f5bc17b864
7 changed files with 96 additions and 35 deletions
|
@ -707,7 +707,7 @@ namespace smt {
|
|||
|
||||
void setup::setup_QF_S() {
|
||||
m_context.register_plugin(alloc(smt::theory_mi_arith, m_manager, m_params));
|
||||
m_context.register_plugin(alloc(smt::theory_str, m_manager));
|
||||
m_context.register_plugin(alloc(smt::theory_str, m_manager, m_params));
|
||||
}
|
||||
|
||||
bool is_arith(static_features const & st) {
|
||||
|
@ -839,7 +839,7 @@ namespace smt {
|
|||
|
||||
void setup::setup_str() {
|
||||
setup_arith();
|
||||
m_context.register_plugin(alloc(theory_str, m_manager));
|
||||
m_context.register_plugin(alloc(theory_str, m_manager, m_params));
|
||||
}
|
||||
|
||||
void setup::setup_unknown() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue