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

more efficient sign lemma

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2019-01-08 23:16:33 -08:00 committed by Lev Nachmanson
parent 4f2eb0b4eb
commit 0d5ca4edfe
4 changed files with 221 additions and 98 deletions

View file

@ -267,8 +267,8 @@ class theory_lra::imp {
struct switcher {
theory_lra::imp& m_th_imp;
scoped_ptr<nra::solver>* m_nra;
scoped_ptr<nla::solver>* m_nla;
bool m_use_nla;
scoped_ptr<nla::solver>* m_nla;
bool m_use_nla;
switcher(theory_lra::imp& i): m_th_imp(i), m_nra(nullptr), m_nla(nullptr) {
}