mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
A faster and more scalable LRA solver by Lev Nachmanson. It is disabled in the initial merge pending a few bug fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
911b24784a
commit
2a63c56ae0
|
@ -720,7 +720,10 @@ namespace smt {
|
||||||
}
|
}
|
||||||
|
|
||||||
void setup::setup_r_arith() {
|
void setup::setup_r_arith() {
|
||||||
m_context.register_plugin(alloc(smt::theory_lra, m_manager, m_params));
|
m_context.register_plugin(alloc(smt::theory_mi_arith, m_manager, m_params));
|
||||||
|
|
||||||
|
// Disabled in initial commit of LRA additions
|
||||||
|
// m_context.register_plugin(alloc(smt::theory_lra, m_manager, m_params));
|
||||||
}
|
}
|
||||||
|
|
||||||
void setup::setup_mi_arith() {
|
void setup::setup_mi_arith() {
|
||||||
|
|
Loading…
Reference in a new issue