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.Persistence.Default.CompositeSerializers.Storable;
|
---|
24 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using System.Collections.Generic;
|
---|
27 | using HeuristicLab.Problems.VehicleRouting.Encodings.General;
|
---|
28 | using HeuristicLab.Data;
|
---|
29 | using HeuristicLab.Problems.VehicleRouting.Interfaces;
|
---|
30 | using HeuristicLab.Optimization;
|
---|
31 |
|
---|
32 | namespace HeuristicLab.Problems.VehicleRouting.Encodings.Potvin {
|
---|
33 | [Item("PotvinVehicleAssignmentMove", "Item that describes a relocation move on a VRP representation.")]
|
---|
34 | [StorableClass]
|
---|
35 | public class PotvinVehicleAssignmentMove: Item, IVRPMove {
|
---|
36 | [Storable]
|
---|
37 | public IVRPEncoding Individual { get; protected set; }
|
---|
38 |
|
---|
39 | [Storable]
|
---|
40 | public int Tour1 { get; protected set; }
|
---|
41 |
|
---|
42 | [Storable]
|
---|
43 | public int Tour2 { get; protected set; }
|
---|
44 |
|
---|
45 |
|
---|
46 | public PotvinVehicleAssignmentMove(): base() {
|
---|
47 | Tour1 = -1;
|
---|
48 | Tour2 = -1;
|
---|
49 |
|
---|
50 | Individual = null;
|
---|
51 | }
|
---|
52 |
|
---|
53 | public PotvinVehicleAssignmentMove(int tour1, int tour2, PotvinEncoding individual) {
|
---|
54 | Tour1 = tour1;
|
---|
55 | Tour2 = tour2;
|
---|
56 |
|
---|
57 | this.Individual = individual.Clone() as PotvinEncoding;
|
---|
58 | }
|
---|
59 |
|
---|
60 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
61 | return new PotvinVehicleAssignmentMove(this, cloner);
|
---|
62 | }
|
---|
63 |
|
---|
64 | protected PotvinVehicleAssignmentMove(PotvinVehicleAssignmentMove original, Cloner cloner)
|
---|
65 | : base(original, cloner) {
|
---|
66 | this.Tour1 = original.Tour1;
|
---|
67 | this.Tour2 = original.Tour2;
|
---|
68 |
|
---|
69 | this.Individual = cloner.Clone(Individual) as PotvinEncoding;
|
---|
70 | }
|
---|
71 |
|
---|
72 | #region IVRPMove Members
|
---|
73 |
|
---|
74 | public VRPMoveEvaluator GetMoveEvaluator() {
|
---|
75 | return new PotvinVehicleAssignmentMoveEvaluator();
|
---|
76 | }
|
---|
77 |
|
---|
78 | public VRPMoveMaker GetMoveMaker() {
|
---|
79 | return new PotvinVehicleAssignmentMoveMaker();
|
---|
80 | }
|
---|
81 |
|
---|
82 | public ITabuMaker GetTabuMaker() {
|
---|
83 | return new PotvinVehicleAssignmentMoveTabuMaker();
|
---|
84 | }
|
---|
85 |
|
---|
86 | public ITabuChecker GetTabuChecker() {
|
---|
87 | return new PotvinVehicleAssignmentMoveTabuCriterion();
|
---|
88 | }
|
---|
89 |
|
---|
90 | public ITabuChecker GetSoftTabuChecker() {
|
---|
91 | PotvinVehicleAssignmentMoveTabuCriterion tabuChecker = new PotvinVehicleAssignmentMoveTabuCriterion();
|
---|
92 | tabuChecker.UseAspirationCriterion.Value = true;
|
---|
93 |
|
---|
94 | return tabuChecker;
|
---|
95 | }
|
---|
96 |
|
---|
97 | #endregion
|
---|
98 | }
|
---|
99 | }
|
---|