Run perturbations in both orders
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 1m27s
Add copyright notice / copyright_notice (pull_request) Successful in 2m13s
Run unit tests / unit_tests (pull_request) Successful in 4m44s

This commit is contained in:
Manuel Bustillo 2024-11-10 18:55:04 +01:00
parent b084328d79
commit f2e91c8d7a
2 changed files with 22 additions and 2 deletions

View File

@ -2,6 +2,13 @@
module VNS module VNS
class Engine class Engine
class << self
def sequence(elements)
elements = elements.to_a
(elements + elements.reverse).chunk(&:itself).map(&:first)
end
end
def target_function(&function) def target_function(&function)
@target_function = function @target_function = function
end end
@ -23,12 +30,12 @@ module VNS
puts "Initial score: #{@best_score.to_f}" puts "Initial score: #{@best_score.to_f}"
@perturbations.each do |perturbation| self.class.sequence(@perturbations).each do |perturbation|
puts "Running perturbation: #{perturbation.name}" puts "Running perturbation: #{perturbation.name}"
optimize(perturbation.new(@best_solution)) optimize(perturbation.new(@best_solution))
end end
@best_solution @best_solution
end end
private private

View File

@ -0,0 +1,13 @@
require 'rails_helper'
module VNS
RSpec.describe Engine do
describe '.sequence' do
it { expect(described_class.sequence([])).to eq([]) }
it { expect(described_class.sequence([1])).to eq([1]) }
it { expect(described_class.sequence([1, 2])).to eq([1, 2, 1]) }
it { expect(described_class.sequence([1, 2, 3])).to eq([1, 2, 3, 2, 1]) }
it { expect(described_class.sequence([1, 2, 3, 4])).to eq([1, 2, 3, 4, 3, 2, 1]) }
end
end
end