mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
remove shadow m_core fields
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
9e82e6965c
commit
1a0d68e1b7
|
@ -27,9 +27,6 @@
|
|||
namespace nla {
|
||||
struct core;
|
||||
struct basics: common {
|
||||
core* m_core;
|
||||
core& c() { return *m_core; }
|
||||
const core& c() const { return *m_core; }
|
||||
basics(core *core);
|
||||
bool basic_sign_lemma_on_two_monomials(const monomial& m, const monomial& n, const rational& sign);
|
||||
|
||||
|
|
|
@ -25,13 +25,8 @@
|
|||
namespace nla {
|
||||
struct core;
|
||||
struct order: common {
|
||||
|
||||
// fields
|
||||
core * m_core;
|
||||
core& _() { return *m_core; }
|
||||
const core& _() const { return *m_core; }
|
||||
core& c() { return *m_core; }
|
||||
const core& c() const { return *m_core; }
|
||||
//constructor
|
||||
order(core *c) : common(c) {}
|
||||
bool order_lemma_on_ac_and_bc_and_factors(const rooted_mon& ac,
|
||||
|
|
|
@ -45,9 +45,6 @@ struct tangents: common {
|
|||
}
|
||||
};
|
||||
|
||||
core* m_core;
|
||||
core& c() { return *m_core; }
|
||||
const core& c() const { return *m_core; }
|
||||
tangents(core *core);
|
||||
|
||||
void generate_simple_tangent_lemma(const rooted_mon* rm);
|
||||
|
|
Loading…
Reference in a new issue