#region License Information /* HeuristicLab * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System.Collections.Generic; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Encodings.PermutationEncoding; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; using HeuristicLab.Problems.VehicleRouting.Encodings.General; namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { [Item("AlbaEncoding", "Represents an Alba encoding of VRP solutions. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")] [StorableClass] public class AlbaEncoding : PermutationEncoding { [Storable] private int cities; #region IVRPEncoding Members public override List GetTours(ILookupParameter distanceMatrix = null, int maxVehicles = int.MaxValue) { List result = new List(); Tour tour = new Tour(); for (int i = 0; i < this.array.Length; i++) { if (this.array[i] >= cities) { if (tour.Cities.Count > 0) { result.Add(tour); tour = new Tour(); } } else { tour.Cities.Add(this.array[i] + 1); } } if (tour.Cities.Count > 0) { result.Add(tour); } return result; } public int Cities { get { return cities; } } public int MaxVehicles { get { return Length - Cities + 1; } } #endregion [StorableConstructor] protected AlbaEncoding(bool deserializing) : base(deserializing) { } protected AlbaEncoding(AlbaEncoding original, Cloner cloner) : base(original, cloner) { cities = original.cities; readOnly = original.readOnly; } public AlbaEncoding(Permutation permutation, int cities) : base(permutation) { this.cities = cities; } public override IDeepCloneable Clone(Cloner cloner) { return new AlbaEncoding(this, cloner); } public static AlbaEncoding ConvertFrom(IVRPEncoding encoding, int vehicles, ILookupParameter distanceMatrix) { List tours = encoding.GetTours(distanceMatrix, vehicles); int cities = 0; foreach (Tour tour in tours) { cities += tour.Cities.Count; } int emptyVehicles = vehicles - tours.Count; int[] array = new int[cities + tours.Count + emptyVehicles - 1]; int delimiter = cities; int arrayIndex = 0; foreach (Tour tour in tours) { foreach (int city in tour.Cities) { array[arrayIndex] = city - 1; arrayIndex++; } if (arrayIndex != array.Length) { array[arrayIndex] = delimiter; delimiter++; arrayIndex++; } } for (int i = 0; i < emptyVehicles - 1; i++) { array[arrayIndex] = delimiter; delimiter++; arrayIndex++; } AlbaEncoding solution = new AlbaEncoding(new Permutation(PermutationTypes.RelativeUndirected, new IntArray(array)), cities); return solution; } public static AlbaEncoding ConvertFrom(List routeParam) { List route = new List(routeParam); route.RemoveAt(routeParam.Count - 1); int cities = 0; for (int i = 0; i < route.Count; i++) { if (route[i] != 0) { cities++; } } int vehicle = cities; for (int i = 0; i < route.Count; i++) { if (route[i] == 0) { route[i] = vehicle; vehicle++; } else { route[i] = route[i] - 1; } } return new AlbaEncoding( new Permutation(PermutationTypes.RelativeUndirected, route.ToArray()), cities); } internal static void RemoveUnusedParameters(ParameterCollection parameters) { parameters.Remove("UseDistanceMatrix"); parameters.Remove("Capacity"); parameters.Remove("Demand"); parameters.Remove("ReadyTime"); parameters.Remove("DueTime"); parameters.Remove("ServiceTime"); } } }