3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 20:18:18 +00:00

fix build warnings part 8

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-05-11 09:37:01 -07:00
parent eb8da3fb9d
commit 431feab1bf

View file

@ -21,9 +21,9 @@ class column_info {
bool m_upper_bound_is_strict; bool m_upper_bound_is_strict;
T m_low_bound; T m_low_bound;
T m_upper_bound; T m_upper_bound;
T m_cost;
T m_fixed_value; T m_fixed_value;
bool m_is_fixed; bool m_is_fixed;
T m_cost;
unsigned m_column_index; unsigned m_column_index;
public: public:
bool operator==(const column_info & c) const { bool operator==(const column_info & c) const {
@ -34,7 +34,7 @@ public:
m_upper_bound_is_strict == c.m_upper_bound_is_strict&& m_upper_bound_is_strict == c.m_upper_bound_is_strict&&
(!m_low_bound_is_set || m_low_bound == c.m_low_bound) && (!m_low_bound_is_set || m_low_bound == c.m_low_bound) &&
(!m_upper_bound_is_set || m_upper_bound == c.m_upper_bound) && (!m_upper_bound_is_set || m_upper_bound == c.m_upper_bound) &&
m_cost == c.m_cost&& m_cost == c.m_cost &&
m_is_fixed == c.m_is_fixed && m_is_fixed == c.m_is_fixed &&
(!m_is_fixed || m_fixed_value == c.m_fixed_value) && (!m_is_fixed || m_fixed_value == c.m_fixed_value) &&
m_column_index == c.m_column_index; m_column_index == c.m_column_index;