Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CloningRefactoring/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Potvin/PotvinEncoding.cs @ 4693

Last change on this file since 4693 was 4691, checked in by mkommend, 14 years ago

Worked on VRP project (ticket #922).

File size: 3.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 System.Collections.Generic;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Problems.VehicleRouting.Encodings.General;
28
29namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
30  [Item("PotvinEncoding", "Represents a potvin encoding of VRP solutions. It is implemented as described in Potvin, J.-Y. and Bengio, S. (1996). The Vehicle Routing Problem with Time Windows - Part II: Genetic Search. INFORMS Journal of Computing, 8:165–172.")]
31  [StorableClass]
32  public class PotvinEncoding : TourEncoding {
33    [Storable]
34    public List<int> Unrouted { get; set; }
35
36    public PotvinEncoding()
37      : base() {
38      Unrouted = new List<int>();
39    }
40    protected PotvinEncoding(PotvinEncoding original, Cloner cloner)
41      : base(original, cloner) {
42      Tours = cloner.Clone(original.Tours);
43      Unrouted = new List<int>(original.Unrouted);
44    }
45    public override IDeepCloneable Clone(Cloner cloner) {
46      return new PotvinEncoding(this, cloner);
47    }
48    [StorableConstructor]
49    private PotvinEncoding(bool serializing)
50      : base() {
51    }
52
53    public static PotvinEncoding ConvertFrom(IVRPEncoding encoding, ILookupParameter<DoubleMatrix> distanceMatrix) {
54      PotvinEncoding solution = new PotvinEncoding();
55
56      TourEncoding.ConvertFrom(encoding, solution, distanceMatrix);
57
58      return solution;
59    }
60
61    public static PotvinEncoding ConvertFrom(List<int> route) {
62      PotvinEncoding solution = new PotvinEncoding();
63
64      TourEncoding.ConvertFrom(route, solution);
65
66      return solution;
67    }
68
69    public bool FindInsertionPlace(
70      DoubleArray dueTimeArray,
71      DoubleArray serviceTimeArray, DoubleArray readyTimeArray, DoubleArray demandArray, DoubleValue capacity,
72      DoubleMatrix coordinates, ILookupParameter<DoubleMatrix> distanceMatrix, BoolValue useDistanceMatrix,
73      int city, int routeToAvoid, out int route, out int place) {
74      route = -1;
75      place = -1;
76      double minDetour = 0;
77
78      for (int tour = 0; tour < Tours.Count; tour++) {
79        if (tour != routeToAvoid) {
80          for (int i = 0; i <= Tours[tour].Cities.Count; i++) {
81            double length = Tours[tour].GetLength(coordinates, distanceMatrix, useDistanceMatrix);
82
83            Tours[tour].Cities.Insert(i, city);
84
85            if (Tours[tour].Feasible(dueTimeArray, serviceTimeArray, readyTimeArray, demandArray,
86              capacity, coordinates, distanceMatrix, useDistanceMatrix)) {
87              double newLength = Tours[tour].GetLength(coordinates, distanceMatrix, useDistanceMatrix);
88
89              double detour = newLength - length;
90
91              if (route <= 0 || detour < minDetour) {
92                route = tour;
93                place = i;
94                minDetour = detour;
95              }
96            }
97
98            Tours[tour].Cities.RemoveAt(i);
99          }
100        }
101      }
102
103      return route >= 0 && place >= 0;
104    }
105  }
106}
Note: See TracBrowser for help on using the repository browser.