#region License Information /* HeuristicLab * Copyright (C) 2002-2010 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; using HeuristicLab.Core; using HeuristicLab.Optimization; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; using HeuristicLab.Problems.VehicleRouting.Encodings.Alba; using HeuristicLab.Parameters; using System.Collections.Generic; using HeuristicLab.Problems.VehicleRouting.Encodings.General; namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { [Item("StochasticIntraRouteInversionSingleMoveGenerator", "Generates one random intra route inversion move from a given VRP encoding.")] [StorableClass] public sealed class StochasticIntraRouteInversionSingleMoveGenerator : IntraRouteInversionMoveGenerator, IStochasticOperator, ISingleMoveGenerator, IAlbaIntraRouteInversionMoveOperator, IMultiVRPMoveGenerator { #region IMultiVRPMoveOperator Members public ILookupParameter VRPMoveParameter { get { return (ILookupParameter)Parameters["IntraRouteInversionMove"]; } } #endregion public ILookupParameter RandomParameter { get { return (ILookupParameter)Parameters["Random"]; } } [StorableConstructor] private StochasticIntraRouteInversionSingleMoveGenerator(bool deserializing) : base(deserializing) { } public StochasticIntraRouteInversionSingleMoveGenerator() : base() { Parameters.Add(new LookupParameter("Random", "The random number generator.")); } public static IntraRouteInversionMove Apply(AlbaEncoding individual, int cities, IRandom rand) { int index1 = -1; int index2 = -1; List validTours = new List(); foreach (Tour tour in individual.GetTours()) { if (tour.Cities.Count >= 4) validTours.Add(tour); } if (validTours.Count > 0) { Tour chosenTour = validTours[rand.Next(validTours.Count)]; int currentTourStart = -1; for (int i = 0; i < individual.Length; i++) { if (individual[i] + 1 == chosenTour.Cities[0]) { currentTourStart = i; break; } } int currentTourEnd = currentTourStart; while (currentTourEnd < individual.Length && individual[currentTourEnd] < individual.Cities) { currentTourEnd++; } int tourLength = currentTourEnd - currentTourStart; int a = rand.Next(tourLength - 3); index1 = currentTourStart + a; index2 = currentTourStart + rand.Next(a + 2, tourLength - 1); } return new IntraRouteInversionMove(index1, index2, individual); } protected override IntraRouteInversionMove[] GenerateMoves(AlbaEncoding individual) { List moves = new List(); IntraRouteInversionMove move = Apply(individual, Cities, RandomParameter.ActualValue); if(move != null) moves.Add(move); return moves.ToArray(); } } }