Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Moves/IntraRouteInversion/AlbaStochasticIntraRouteInversionSingleMoveGenerator.cs @ 9480

Last change on this file since 9480 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 4.2 KB
RevLine 
[4204]1#region License Information
2/* HeuristicLab
[9456]3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[4204]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
[4722]22using System.Collections.Generic;
23using HeuristicLab.Common;
[4204]24using HeuristicLab.Core;
25using HeuristicLab.Optimization;
[4722]26using HeuristicLab.Parameters;
[4204]27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
[4205]28using HeuristicLab.Problems.VehicleRouting.Encodings.General;
[4204]29
30namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba {
[4346]31  [Item("AlbaStochasticIntraRouteInversionSingleMoveGenerator", "Generates one random intra route inversion move from a given VRP encoding.  It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")]
[4204]32  [StorableClass]
[4346]33  public sealed class AlbaStochasticIntraRouteInversionSingleMoveGenerator : AlbaIntraRouteInversionMoveGenerator,
[4206]34    IStochasticOperator, ISingleMoveGenerator, IAlbaIntraRouteInversionMoveOperator, IMultiVRPMoveGenerator {
[4205]35    #region IMultiVRPMoveOperator Members
36
37    public ILookupParameter VRPMoveParameter {
[4346]38      get { return (ILookupParameter)Parameters["AlbaIntraRouteInversionMove"]; }
[4205]39    }
40
41    #endregion
[4722]42
[4204]43    public ILookupParameter<IRandom> RandomParameter {
44      get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
45    }
[4722]46
[4204]47    [StorableConstructor]
[4346]48    private AlbaStochasticIntraRouteInversionSingleMoveGenerator(bool deserializing) : base(deserializing) { }
[4722]49    private AlbaStochasticIntraRouteInversionSingleMoveGenerator(AlbaStochasticIntraRouteInversionSingleMoveGenerator original, Cloner cloner) : base(original, cloner) { }
[4346]50    public AlbaStochasticIntraRouteInversionSingleMoveGenerator()
[4204]51      : base() {
[4722]52      Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator."));
[4204]53    }
54
[4722]55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new AlbaStochasticIntraRouteInversionSingleMoveGenerator(this, cloner);
57    }
58
[4346]59    public static AlbaIntraRouteInversionMove Apply(AlbaEncoding individual, int cities, IRandom rand) {
[4204]60      int index1 = -1;
61      int index2 = -1;
62
63      List<Tour> validTours = new List<Tour>();
[4230]64      foreach (Tour tour in individual.GetTours()) {
[4204]65        if (tour.Cities.Count >= 4)
66          validTours.Add(tour);
67      }
68
69      if (validTours.Count > 0) {
70        Tour chosenTour = validTours[rand.Next(validTours.Count)];
71        int currentTourStart = -1;
72        for (int i = 0; i < individual.Length; i++) {
73          if (individual[i] + 1 == chosenTour.Cities[0]) {
74            currentTourStart = i;
75            break;
76          }
77        }
78
79        int currentTourEnd = currentTourStart;
[4722]80        while (currentTourEnd < individual.Length &&
[4330]81          individual[currentTourEnd] < individual.Cities) {
[4204]82          currentTourEnd++;
83        }
84
85        int tourLength = currentTourEnd - currentTourStart;
86        int a = rand.Next(tourLength - 3);
87        index1 = currentTourStart + a;
88        index2 = currentTourStart + rand.Next(a + 2, tourLength - 1);
89      }
90
[4346]91      return new AlbaIntraRouteInversionMove(index1, index2, individual);
[4204]92    }
93
[4346]94    protected override AlbaIntraRouteInversionMove[] GenerateMoves(AlbaEncoding individual) {
95      List<AlbaIntraRouteInversionMove> moves = new List<AlbaIntraRouteInversionMove>();
[4204]96
[4346]97      AlbaIntraRouteInversionMove move = Apply(individual, Cities, RandomParameter.ActualValue);
[4722]98      if (move != null)
[4204]99        moves.Add(move);
100
101      return moves.ToArray();
102    }
103  }
104}
Note: See TracBrowser for help on using the repository browser.