mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
reduce number of redundant arguments and pointers
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
44d2f6da6c
commit
e8c3324c3f
9 changed files with 19 additions and 20 deletions
|
@ -34,7 +34,7 @@ class horner : common {
|
|||
unsigned m_row_index;
|
||||
public:
|
||||
typedef intervals::interval interv;
|
||||
horner(core *core, intervals*);
|
||||
horner(core *core);
|
||||
bool horner_lemmas();
|
||||
template <typename T> // T has an iterator of (coeff(), var())
|
||||
bool lemmas_on_row(const T&);
|
||||
|
@ -48,6 +48,6 @@ public:
|
|||
|
||||
template <typename T> // T has an iterator of (coeff(), var())
|
||||
bool row_has_monomial_to_refine(const T&) const;
|
||||
bool interval_from_term_with_deps(const nex* e, interv&) const;
|
||||
bool interval_from_term_with_deps(const nex* e, intervals::interval&) const;
|
||||
}; // end of horner
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue