From ffdec730d49c53d77761c2be02a84548f41a62d2 Mon Sep 17 00:00:00 2001 From: Ruslan Sadykov Date: Mon, 5 Feb 2024 09:28:55 +0100 Subject: [PATCH] Remove unused field from BaBSearchSpace --- src/Algorithm/treesearch/branch_and_bound.jl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Algorithm/treesearch/branch_and_bound.jl b/src/Algorithm/treesearch/branch_and_bound.jl index 88c5a755f..0b1bfe014 100644 --- a/src/Algorithm/treesearch/branch_and_bound.jl +++ b/src/Algorithm/treesearch/branch_and_bound.jl @@ -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. @@ -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,