Skip to content

Commit

Permalink
Remove unused field from BaBSearchSpace
Browse files Browse the repository at this point in the history
  • Loading branch information
rrsadykov committed Feb 5, 2024
1 parent 9a09c37 commit ffdec73
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Algorithm/treesearch/branch_and_bound.jl
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ LeavesStatus(reform) = LeavesStatus(true, nothing)
mutable struct BaBSearchSpace <: AbstractColunaSearchSpace
# Reformulation that the branch-and-bound algorithm will optimize.
reformulation::Reformulation
# Algorithm that presolves the formulation
presolve::Union{Nothing, PresolveAlgorithm}
# Algorithm that evaluates a node of the branch-and-bound tree.
conquer::AbstractConquerAlgorithm
# Algorithm that generated the children of a branch-and-bound node.
Expand Down Expand Up @@ -187,7 +185,6 @@ function TreeSearch.new_space(
conquer_units_to_restore = collect_units_to_restore!(algo.conqueralg, reform)
return BaBSearchSpace(
reform,
algo.presolvealg,
algo.conqueralg,
algo.dividealg,
algo.maxnumnodes,
Expand Down

0 comments on commit ffdec73

Please sign in to comment.