Skip to content

Commit a517f13

Browse files
committed
fixed compilation
Signed-off-by: Nicolas Guidotti <nguidotti@nvidia.com>
1 parent 62d0452 commit a517f13

6 files changed

Lines changed: 92 additions & 117 deletions

File tree

cpp/src/branch_and_bound/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
set(BRANCH_AND_BOUND_SRC_FILES
77
${CMAKE_CURRENT_SOURCE_DIR}/branch_and_bound.cpp
8-
${CMAKE_CURRENT_SOURCE_DIR}/mip_node.cpp
98
${CMAKE_CURRENT_SOURCE_DIR}/pseudo_costs.cpp
109
${CMAKE_CURRENT_SOURCE_DIR}/diving_heuristics.cpp
1110
)

cpp/src/branch_and_bound/constants.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ enum search_strategy_t : int {
2626

2727
enum class rounding_direction_t { NONE = -1, DOWN = 0, UP = 1 };
2828

29-
enum class branch_and_bound_mode_t { REGULAR = 0, DETERMINISTIC = 1 };
29+
enum class branch_and_bound_mode_t { PARALLEL = 0, DETERMINISTIC = 1 };
3030

3131
} // namespace cuopt::linear_programming::dual_simplex

cpp/src/branch_and_bound/mip_node.cpp

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)