Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Potvin/Moves/PickupDelivery/PDRearrange/PotvinPDRearrangeMoveMaker.cs @ 6960

Last change on this file since 6960 was 6960, checked in by svonolfe, 12 years ago

Added pairwise manipulators, removed relocation manipulator (#1177)

File size: 3.7 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 HeuristicLab.Core;
23using HeuristicLab.Data;
24using HeuristicLab.Operators;
25using HeuristicLab.Optimization;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.Common;
29using HeuristicLab.Problems.VehicleRouting.ProblemInstances;
30using HeuristicLab.Problems.VehicleRouting.Interfaces;
31using HeuristicLab.Problems.VehicleRouting.Variants;
32
33namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
34  [Item("PotvinPDRearrangeMoveMaker", "Peforms the rearrange move on a given PDP encoding and updates the quality.")]
35  [StorableClass]
36  public class PotvinPDRearrangeMoveMaker : PotvinMoveMaker, IPotvinPDRearrangeMoveOperator, IMoveMaker {
37    public ILookupParameter<PotvinPDRearrangeMove> PDRearrangeMoveParameter {
38      get { return (ILookupParameter<PotvinPDRearrangeMove>)Parameters["PotvinPDRearrangeMove"]; }
39    }
40
41    public override ILookupParameter VRPMoveParameter {
42      get { return PDRearrangeMoveParameter; }
43    }
44
45    [StorableConstructor]
46    private PotvinPDRearrangeMoveMaker(bool deserializing) : base(deserializing) { }
47
48    public PotvinPDRearrangeMoveMaker()
49      : base() {
50        Parameters.Add(new LookupParameter<PotvinPDRearrangeMove>("PotvinPDRearrangeMove", "The moves that should be made."));
51     }
52
53    public override IDeepCloneable Clone(Cloner cloner) {
54      return new PotvinPDRearrangeMoveMaker(this, cloner);
55    }
56
57    protected PotvinPDRearrangeMoveMaker(PotvinPDRearrangeMoveMaker original, Cloner cloner)
58      : base(original, cloner) {
59    }
60
61    public static void Apply(PotvinEncoding solution, PotvinPDRearrangeMove move, IVRPProblemInstance problemInstance) {
62      Tour tour = solution.Tours[move.Tour];
63      int position = tour.Stops.IndexOf(move.City);
64
65      IPickupAndDeliveryProblemInstance pdp = problemInstance as IPickupAndDeliveryProblemInstance;
66      if (pdp != null) {
67        int location = pdp.GetPickupDeliveryLocation(move.City);
68        Tour tour2 = solution.Tours.Find(t => t.Stops.Contains(location));
69        int position2 = tour2.Stops.IndexOf(location);
70
71        tour.Stops.Remove(move.City);
72        tour2.Stops.Remove(location);
73
74        solution.InsertPair(tour, move.City, location, problemInstance, position, position2);
75      } else {
76        tour.Stops.Remove(move.City);
77        int place = solution.FindBestInsertionPlace(tour, move.City, position);
78        tour.Stops.Insert(place, move.City);
79      }
80    }
81
82    protected override void PerformMove() {
83      PotvinPDRearrangeMove move = PDRearrangeMoveParameter.ActualValue;
84
85      PotvinEncoding newSolution = move.Individual.Clone() as PotvinEncoding;
86      Apply(newSolution, move, ProblemInstance);
87      newSolution.Repair();
88      VRPToursParameter.ActualValue = newSolution;
89    }
90  }
91}
Note: See TracBrowser for help on using the repository browser.