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("AlbaTranslocationMove", "Item that describes a translocation 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 AlbaTranslocationMove: TranslocationMove, IVRPMove {
|
---|
35 | public IVRPEncoding Individual { get { return Permutation as AlbaEncoding; } }
|
---|
36 |
|
---|
37 | public AlbaTranslocationMove(int index1, int index2, int index3):
|
---|
38 | base(index1, index2, index3) {
|
---|
39 | }
|
---|
40 |
|
---|
41 | public AlbaTranslocationMove(int index1, int index2, int index3, AlbaEncoding individual):
|
---|
42 | base(index1, index2, index3, individual.Clone() as AlbaEncoding){
|
---|
43 | }
|
---|
44 |
|
---|
45 | public override IDeepCloneable Clone(HeuristicLab.Common.Cloner cloner) {
|
---|
46 | AlbaTranslocationMove clone = new AlbaTranslocationMove(
|
---|
47 | Index1, Index2, Index3);
|
---|
48 | if (Permutation != null)
|
---|
49 | clone.Permutation = Permutation.Clone() as AlbaEncoding;
|
---|
50 |
|
---|
51 | cloner.RegisterClonedObject(this, clone);
|
---|
52 | return clone;
|
---|
53 | }
|
---|
54 |
|
---|
55 | #region IVRPMove Members
|
---|
56 |
|
---|
57 | public VRPMoveEvaluator GetMoveEvaluator() {
|
---|
58 | return new AlbaTranslocationMoveEvaluator();
|
---|
59 | }
|
---|
60 |
|
---|
61 | public VRPMoveMaker GetMoveMaker() {
|
---|
62 | return new AlbaTranslocationMoveMaker();
|
---|
63 | }
|
---|
64 |
|
---|
65 | #endregion
|
---|
66 | }
|
---|
67 | }
|
---|