3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

move m_intervals to nla_core

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-10-28 17:12:48 -07:00
parent 9b3ebfdd2a
commit 971ae50ba3
11 changed files with 20 additions and 25 deletions

View file

@ -44,11 +44,13 @@ inline llc negate(llc cmp) {
}
class core;
class intervals;
struct common {
core* m_core;
nex_creator m_nex_creator;
intervals* m_intervals;
common(core* c): m_core(c) {}
common(core* c, intervals* i): m_core(c), m_intervals(i) {}
core& c() { return *m_core; }
const core& c() const { return *m_core; }
core& _() { return *m_core; }