Avoid stack too deep erros due to excessive recursion #178

Merged
bustikiller merged 1 commits from stack-error-vns into main 2024-12-09 17:16:41 +00:00

View File

@ -29,7 +29,7 @@ module VNS
@best_score = @target_function.call(@best_solution)
self.class.sequence(@perturbations).each do |perturbation|
optimize(perturbation.new(@best_solution))
optimize(perturbation)
end
@best_solution
@ -37,15 +37,22 @@ module VNS
private
def optimize(perturbation)
perturbation.each do |alternative_solution|
score = @target_function.call(alternative_solution)
next if score >= @best_score
def optimize(perturbation_klass)
loop do
optimized = false
@best_solution = alternative_solution.deep_dup
@best_score = score
perturbation_klass.new(@best_solution).each do |alternative_solution|
score = @target_function.call(alternative_solution)
next if score >= @best_score
return optimize(perturbation.class.new(@best_solution))
@best_solution = alternative_solution.deep_dup
@best_score = score
optimized = true
break
end
return unless optimized
end
end
end