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 |
|
---|
31 | namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba {
|
---|
32 | [Item("AlbaLambdaInterchangeMove", "Item that describes a lambda move on a VRP representation. It is implemented as described in Alba, E. and Dorronsoro, B. (2004). Solving the Vehicle Routing Problem by Using Cellular Genetic Algorithms.")]
|
---|
33 | [StorableClass]
|
---|
34 | public class AlbaLambdaInterchangeMove: Item, IVRPMove {
|
---|
35 | [Storable]
|
---|
36 | public IVRPEncoding Individual { get; protected set; }
|
---|
37 |
|
---|
38 | [Storable]
|
---|
39 | public int Tour1 { get; protected set; }
|
---|
40 |
|
---|
41 | [Storable]
|
---|
42 | public int Position1 { get; protected set; }
|
---|
43 |
|
---|
44 | [Storable]
|
---|
45 | public int Length1 { get; protected set; }
|
---|
46 |
|
---|
47 | [Storable]
|
---|
48 | public int Tour2 { get; protected set; }
|
---|
49 |
|
---|
50 | [Storable]
|
---|
51 | public int Position2 { get; protected set; }
|
---|
52 |
|
---|
53 | [Storable]
|
---|
54 | public int Length2 { get; protected set; }
|
---|
55 |
|
---|
56 | public AlbaLambdaInterchangeMove(): base() {
|
---|
57 | Tour1 = -1;
|
---|
58 | Position1 = -1;
|
---|
59 | Length1 = -1;
|
---|
60 |
|
---|
61 | Tour2 = -1;
|
---|
62 | Position2 = -1;
|
---|
63 | Length2 = -1;
|
---|
64 |
|
---|
65 | Individual = null;
|
---|
66 | }
|
---|
67 |
|
---|
68 | public AlbaLambdaInterchangeMove(int tour1, int position1, int length1,
|
---|
69 | int tour2, int position2, int length2, AlbaEncoding permutation) {
|
---|
70 | Tour1 = tour1;
|
---|
71 | Position1 = position1;
|
---|
72 | Length1 = length1;
|
---|
73 |
|
---|
74 | Tour2 = tour2;
|
---|
75 | Position2 = position2;
|
---|
76 | Length2 = length2;
|
---|
77 |
|
---|
78 | this.Individual = permutation.Clone() as AlbaEncoding;
|
---|
79 | }
|
---|
80 |
|
---|
81 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
82 | return new AlbaLambdaInterchangeMove(this, cloner);
|
---|
83 | }
|
---|
84 |
|
---|
85 | protected AlbaLambdaInterchangeMove(AlbaLambdaInterchangeMove original, Cloner cloner)
|
---|
86 | : base(original, cloner) {
|
---|
87 | this.Tour1 = original.Tour1;
|
---|
88 | this.Position1 = original.Position1;
|
---|
89 | this.Length1 = original.Length1;
|
---|
90 |
|
---|
91 | this.Tour2 = original.Tour2;
|
---|
92 | this.Position2 = original.Position2;
|
---|
93 | this.Length2 = original.Length2;
|
---|
94 |
|
---|
95 | this.Individual = cloner.Clone(Individual) as AlbaEncoding;
|
---|
96 | }
|
---|
97 |
|
---|
98 | #region IVRPMove Members
|
---|
99 |
|
---|
100 | public VRPMoveEvaluator GetMoveEvaluator() {
|
---|
101 | return new AlbaLambdaInterchangeMoveEvaluator();
|
---|
102 | }
|
---|
103 |
|
---|
104 | public VRPMoveMaker GetMoveMaker() {
|
---|
105 | return new AlbaLambdaInterchangeMoveMaker();
|
---|
106 | }
|
---|
107 |
|
---|
108 | #endregion
|
---|
109 | }
|
---|
110 | }
|
---|