Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.3/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Potvin/Manipulators/PotvinManipulator.cs @ 13398

Last change on this file since 13398 was 5445, checked in by swagner, 13 years ago

Updated year of copyrights (#1406)

File size: 3.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Optimization;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
29  [Item("PotvinManipulator", "A VRP manipulation operation.")]
30  [StorableClass]
31  public abstract class PotvinManipulator : VRPManipulator, IStochasticOperator {
32    public ILookupParameter<IRandom> RandomParameter {
33      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
34    }
35
36    [StorableConstructor]
37    protected PotvinManipulator(bool deserializing) : base(deserializing) { }
38    protected PotvinManipulator(PotvinManipulator original, Cloner cloner)
39      : base(original, cloner) {
40    }
41    public PotvinManipulator() {
42      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic manipulation operators."));
43    }
44
45    protected abstract void Manipulate(IRandom random, PotvinEncoding individual);
46
47    protected int SelectRandomTourBiasedByLength(IRandom random, PotvinEncoding individual) {
48      int tourIndex = -1;
49
50      double sum = 0.0;
51      double[] probabilities = new double[individual.Tours.Count];
52      for (int i = 0; i < individual.Tours.Count; i++) {
53        probabilities[i] = 1.0 / ((double)individual.Tours[i].Cities.Count / (double)Cities);
54        sum += probabilities[i];
55      }
56
57      for (int i = 0; i < probabilities.Length; i++)
58        probabilities[i] = probabilities[i] / sum;
59
60      double rand = random.NextDouble();
61      double cumulatedProbabilities = 0.0;
62      int index = 0;
63      while (tourIndex == -1 && index < probabilities.Length) {
64        if (cumulatedProbabilities <= rand && rand <= cumulatedProbabilities + probabilities[index])
65          tourIndex = index;
66
67        cumulatedProbabilities += probabilities[index];
68        index++;
69      }
70
71      return tourIndex;
72    }
73
74    protected bool FindInsertionPlace(PotvinEncoding individual, int city, int routeToAvoid, out int route, out int place) {
75      return individual.FindInsertionPlace(
76        DueTimeParameter.ActualValue, ServiceTimeParameter.ActualValue, ReadyTimeParameter.ActualValue,
77        DemandParameter.ActualValue, CapacityParameter.ActualValue, CoordinatesParameter.ActualValue,
78        DistanceMatrixParameter, UseDistanceMatrixParameter.ActualValue,
79        city, routeToAvoid, out route, out place);
80    }
81
82    public override IOperation Apply() {
83      IVRPEncoding solution = VRPToursParameter.ActualValue;
84      if (!(solution is PotvinEncoding)) {
85        VRPToursParameter.ActualValue = PotvinEncoding.ConvertFrom(solution, DistanceMatrixParameter);
86      }
87
88      Manipulate(RandomParameter.ActualValue, VRPToursParameter.ActualValue as PotvinEncoding);
89
90      return base.Apply();
91    }
92  }
93}
Note: See TracBrowser for help on using the repository browser.