From 904a50fe498c325f5c347628cd66a1ab610030e0 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 27 May 2024 12:19:29 +0700 Subject: [PATCH] Fix compilation error in column_info (#7235) Reference to `m_low_bound` should be `m_lower_bound`. --- src/math/lp/column_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/lp/column_info.h b/src/math/lp/column_info.h index 1dc0c60c7..9cbeea66c 100644 --- a/src/math/lp/column_info.h +++ b/src/math/lp/column_info.h @@ -47,7 +47,7 @@ public: 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 &&