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