Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Moves/LambdaInterchange/AlbaLambdaInterchangeMove.cs @ 14186

Last change on this file since 14186 was 14186, checked in by swagner, 8 years ago

#2526: Updated year of copyrights in license headers

File size: 3.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Optimization;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26using HeuristicLab.Problems.VehicleRouting.Encodings.General;
27using HeuristicLab.Problems.VehicleRouting.Interfaces;
28
29namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba {
30  [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.")]
31  [StorableClass]
32  public class AlbaLambdaInterchangeMove : Item, IVRPMove {
33    [Storable]
34    public IVRPEncoding Individual { get; protected set; }
35
36    [Storable]
37    public int Tour1 { get; protected set; }
38
39    [Storable]
40    public int Position1 { get; protected set; }
41
42    [Storable]
43    public int Length1 { get; protected set; }
44
45    [Storable]
46    public int Tour2 { get; protected set; }
47
48    [Storable]
49    public int Position2 { get; protected set; }
50
51    [Storable]
52    public int Length2 { get; protected set; }
53
54    public AlbaLambdaInterchangeMove()
55      : base() {
56      Tour1 = -1;
57      Position1 = -1;
58      Length1 = -1;
59
60      Tour2 = -1;
61      Position2 = -1;
62      Length2 = -1;
63
64      Individual = null;
65    }
66
67    public AlbaLambdaInterchangeMove(int tour1, int position1, int length1,
68      int tour2, int position2, int length2, AlbaEncoding permutation) {
69      Tour1 = tour1;
70      Position1 = position1;
71      Length1 = length1;
72
73      Tour2 = tour2;
74      Position2 = position2;
75      Length2 = length2;
76
77      this.Individual = permutation.Clone() as AlbaEncoding;
78    }
79
80    [StorableConstructor]
81    protected AlbaLambdaInterchangeMove(bool deserializing) : base(deserializing) { }
82
83    public override IDeepCloneable Clone(Cloner cloner) {
84      return new AlbaLambdaInterchangeMove(this, cloner);
85    }
86
87    protected AlbaLambdaInterchangeMove(AlbaLambdaInterchangeMove original, Cloner cloner)
88      : base(original, cloner) {
89      this.Tour1 = original.Tour1;
90      this.Position1 = original.Position1;
91      this.Length1 = original.Length1;
92
93      this.Tour2 = original.Tour2;
94      this.Position2 = original.Position2;
95      this.Length2 = original.Length2;
96
97      this.Individual = cloner.Clone(Individual) as AlbaEncoding;
98    }
99
100    #region IVRPMove Members
101
102    public VRPMoveEvaluator GetMoveEvaluator() {
103      return new AlbaLambdaInterchangeMoveEvaluator();
104    }
105
106    public VRPMoveMaker GetMoveMaker() {
107      return new AlbaLambdaInterchangeMoveMaker();
108    }
109
110    public ITabuMaker GetTabuMaker() {
111      return null;
112    }
113
114    public ITabuChecker GetTabuChecker() {
115      return null;
116    }
117
118    public ITabuChecker GetSoftTabuChecker() {
119      return null;
120    }
121
122    #endregion
123  }
124}
Note: See TracBrowser for help on using the repository browser.