Skip to content

Commit

Permalink
Fix compilation error in column_info (#7235)
Browse files Browse the repository at this point in the history
Reference to `m_low_bound` should be `m_lower_bound`.
  • Loading branch information
waywardmonkeys committed May 27, 2024
1 parent e454ae2 commit 904a50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/math/lp/column_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class column_info {
m_lower_bound_is_strict == c.m_lower_bound_is_strict &&
m_upper_bound_is_set == c.m_upper_bound_is_set&&
m_upper_bound_is_strict == c.m_upper_bound_is_strict&&
(!m_lower_bound_is_set || m_lower_bound == c.m_low_bound) &&
(!m_lower_bound_is_set || m_lower_bound == c.m_lower_bound) &&
(!m_upper_bound_is_set || m_upper_bound == c.m_upper_bound) &&
m_cost == c.m_cost &&
m_is_fixed == c.m_is_fixed &&
Expand Down

0 comments on commit 904a50f

Please sign in to comment.