Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2994-AutoDiffForIntervals/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/InversionMoveRelativeAttribute.cs @ 17209

Last change on this file since 17209 was 17209, checked in by gkronber, 5 years ago

#2994: merged r17132:17198 from trunk to branch

File size: 2.4 KB
RevLine 
[3233]1#region License Information
2/* HeuristicLab
[17209]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3233]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
[3376]22using HeuristicLab.Common;
[3233]23using HeuristicLab.Core;
[16565]24using HEAL.Attic;
[3233]25
26namespace HeuristicLab.Encodings.PermutationEncoding {
27  [Item("InversionMoveRelativeAttribute", "Specifies the tabu attributes for an inversion move (2-opt) on a relative position permutation.")]
[16565]28  [StorableType("92CFBF00-0D01-4EBA-9CED-EA1483C842F7")]
[3340]29  public class InversionMoveRelativeAttribute : PermutationMoveAttribute {
[3233]30    [Storable]
31    public int Edge1Source { get; private set; }
32    [Storable]
33    public int Edge1Target { get; private set; }
34    [Storable]
35    public int Edge2Source { get; private set; }
36    [Storable]
37    public int Edge2Target { get; private set; }
38
39    [StorableConstructor]
[16565]40    protected InversionMoveRelativeAttribute(StorableConstructorFlag _) : base(_) { }
[4722]41    protected InversionMoveRelativeAttribute(InversionMoveRelativeAttribute original, Cloner cloner)
42      : base(original, cloner) {
43      this.Edge1Source = original.Edge1Source;
44      this.Edge1Target = original.Edge1Target;
45      this.Edge2Source = original.Edge2Source;
46      this.Edge2Target = original.Edge2Target;
[3233]47    }
[4722]48    public InversionMoveRelativeAttribute() : this(-1, -1, -1, -1, -1) { }
[3340]49    public InversionMoveRelativeAttribute(int edge1Source, int edge1Target, int edge2Source, int edge2Target, double moveQuality)
50      : base(moveQuality) {
[3233]51      Edge1Source = edge1Source;
52      Edge1Target = edge1Target;
53      Edge2Source = edge2Source;
54      Edge2Target = edge2Target;
55    }
56
57    public override IDeepCloneable Clone(Cloner cloner) {
[4722]58      return new InversionMoveRelativeAttribute(this, cloner);
[3233]59    }
60  }
61}
Note: See TracBrowser for help on using the repository browser.