[13412] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[13412] | 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.Common;
|
---|
[12272] | 23 | using HeuristicLab.Core;
|
---|
| 24 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
[16565] | 25 | using HEAL.Attic;
|
---|
[12272] | 26 |
|
---|
| 27 | namespace HeuristicLab.Problems.PTSP {
|
---|
[13412] | 28 | [Item("2.5-Move", "Represents a 2.5-move.")]
|
---|
[16565] | 29 | [StorableType("CAC6762D-DFF1-4B66-BAC7-FBCED4A52305")]
|
---|
[13412] | 30 | public sealed class TwoPointFiveMove : Item {
|
---|
| 31 | [Storable]
|
---|
[14140] | 32 | public int Index1 { get; private set; }
|
---|
[13412] | 33 | [Storable]
|
---|
[14140] | 34 | public int Index2 { get; private set; }
|
---|
[13412] | 35 | [Storable]
|
---|
[14140] | 36 | public Permutation Permutation { get; private set; }
|
---|
[13412] | 37 | [Storable]
|
---|
[14140] | 38 | public bool IsInvert { get; private set; }
|
---|
[13412] | 39 |
|
---|
[12272] | 40 | [StorableConstructor]
|
---|
[16565] | 41 | private TwoPointFiveMove(StorableConstructorFlag _) : base(_) { }
|
---|
[13412] | 42 | private TwoPointFiveMove(TwoPointFiveMove original, Cloner cloner)
|
---|
[12272] | 43 | : base(original, cloner) {
|
---|
| 44 | this.Index1 = original.Index1;
|
---|
| 45 | this.Index2 = original.Index2;
|
---|
| 46 | this.IsInvert = original.IsInvert;
|
---|
[13412] | 47 | this.Permutation = cloner.Clone(original.Permutation);
|
---|
[12272] | 48 | }
|
---|
| 49 | public TwoPointFiveMove(int index1, int index2, Permutation permutation, bool isinvert)
|
---|
| 50 | : base() {
|
---|
| 51 | Index1 = index1;
|
---|
| 52 | Index2 = index2;
|
---|
| 53 | IsInvert = isinvert;
|
---|
| 54 | Permutation = permutation;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | public TwoPointFiveMove(int index1, int index2, bool isinvert)
|
---|
| 58 | : base() {
|
---|
| 59 | Index1 = index1;
|
---|
| 60 | Index2 = index2;
|
---|
| 61 | IsInvert = isinvert;
|
---|
| 62 | Permutation = null;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 66 | return new TwoPointFiveMove(this, cloner);
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | }
|
---|