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:
parent
9b3ebfdd2a
commit
971ae50ba3
11 changed files with 20 additions and 25 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue