Skip to content

Commit 3bbf147

Browse files
committed
na
Signed-off-by: Lev Nachmanson <[email protected]>
1 parent ccce599 commit 3bbf147

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/math/lp/int_branch.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,10 @@ int int_branch::find_inf_int_base_column() {
9999
}
100100
}
101101
} else if (boxed &&
102-
(new_range = lcs.m_r_upper_bounds()[j].x - lcs.m_r_lower_bounds()[j].x)
102+
(range = lcs.m_r_upper_bounds()[j].x - lcs.m_r_lower_bounds()[j].x)
103103
<= small_range_thresold) {
104104
small = true;
105105
result = j;
106-
range = new_range;
107106
n = 1;
108107
} else if (result == -1) {
109108
result = j;

0 commit comments

Comments
 (0)