From e67e60a01fa1915a326363070eeda7b64245a9f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi?= <47191601+remi-garcia@users.noreply.github.com> Date: Wed, 11 Dec 2019 17:51:07 +0100 Subject: [PATCH] Clean --- main.jl | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/main.jl b/main.jl index 2b78e01..48b4a78 100644 --- a/main.jl +++ b/main.jl @@ -48,16 +48,6 @@ function main() println("Initial solution created... \t" * string(tmp[2])) costs[1,:] = RRB.cost(solution, instance, 3) - # # ILS-HPRC - # tmp = @timed solution = RRB.ILS_HPRC(solution, instance, start_time) - # println("Solution improved with ILS_HPRC \t" * string(tmp[2])) - # costs[2,:] = RRB.cost(solution, instance, 3) - # - # # VNS-LPRC - # tmp = @timed solution = RRB.VNS_LPRC(solution, instance, start_time) - # println("Solution improved with VNS_LPRC \t" * string(tmp[2])) - # costs[3,:] = RRB.cost(solution, instance, 3) - # Repair tmp = @timed RRB.initialize_batches!(solution, instance) tmp1 = @timed RRB.repair!(solution, instance)