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
|
@ -168,7 +168,7 @@ struct imp {
|
|||
return out;
|
||||
}
|
||||
|
||||
bool plane_is_correct_cut(const point& plane) const {
|
||||
bool plane_is_correct_cut(const point& plane) const {
|
||||
TRACE("nla_solver", tout << "plane = " << plane << "\n";
|
||||
tout << "tang_plane() = " << tang_plane(plane) << ", v = " << m_v << ", correct_v = " << m_correct_v << "\n";);
|
||||
SASSERT((m_below && m_v < m_correct_v) ||
|
||||
|
@ -179,7 +179,7 @@ struct imp {
|
|||
}
|
||||
};
|
||||
|
||||
tangents::tangents(core * c) : common(c, nullptr) {}
|
||||
tangents::tangents(core * c) : common(c) {}
|
||||
|
||||
void tangents::tangent_lemma() {
|
||||
if (!c().m_nla_settings.run_tangents()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue