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 |
|
---|
25 | namespace HeuristicLab.Encodings.PermutationEncoding {
|
---|
26 | [Item("ThreeIndexMove", "A move on a permutation that is specified by 3 indices")]
|
---|
27 | [StorableClass]
|
---|
28 | public class ThreeIndexMove : Item {
|
---|
29 | [Storable]
|
---|
30 | public int Index1 { get; protected set; }
|
---|
31 | [Storable]
|
---|
32 | public int Index2 { get; protected set; }
|
---|
33 | [Storable]
|
---|
34 | public int Index3 { get; protected set; }
|
---|
35 | [Storable]
|
---|
36 | public Permutation Permutation { get; protected set; }
|
---|
37 |
|
---|
38 | public ThreeIndexMove()
|
---|
39 | : base() {
|
---|
40 | Index1 = -1;
|
---|
41 | Index2 = -1;
|
---|
42 | Index3 = -1;
|
---|
43 | Permutation = null;
|
---|
44 | }
|
---|
45 |
|
---|
46 | public ThreeIndexMove(int index1, int index2, int index3, Permutation permutation)
|
---|
47 | : base() {
|
---|
48 | Index1 = index1;
|
---|
49 | Index2 = index2;
|
---|
50 | Index3 = index3;
|
---|
51 | Permutation = permutation;
|
---|
52 | }
|
---|
53 |
|
---|
54 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
55 | ThreeIndexMove clone = (ThreeIndexMove)base.Clone(cloner);
|
---|
56 | clone.Index1 = Index1;
|
---|
57 | clone.Index2 = Index2;
|
---|
58 | clone.Index3 = Index3;
|
---|
59 | if (Permutation != null)
|
---|
60 | clone.Permutation = (Permutation)Permutation.Clone(cloner);
|
---|
61 | return clone;
|
---|
62 | }
|
---|
63 | }
|
---|
64 | } |
---|