3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

remove relative include from API

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-07-31 16:32:26 -07:00
parent e8cdc34219
commit 5cda9504f1
2 changed files with 16 additions and 11 deletions

View file

@ -720,7 +720,12 @@ namespace smt {
}
void setup::setup_i_arith() {
m_context.register_plugin(alloc(smt::theory_i_arith, m_manager, m_params));
if (m_params.m_arith_mode == AS_OPTINF) {
m_context.register_plugin(alloc(smt::theory_lra, m_manager, m_params));
}
else {
m_context.register_plugin(alloc(smt::theory_i_arith, m_manager, m_params));
}
}
void setup::setup_r_arith() {