Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/InversionMoveTabuMaker.cs @ 4047

Last change on this file since 4047 was 3520, checked in by abeham, 15 years ago

forbid changing some operator names #889, #890, #913, #914, #934, #924

File size: 3.0 KB
Line 
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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Operators;
27using HeuristicLab.Optimization;
28using HeuristicLab.Optimization.Operators;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Encodings.PermutationEncoding {
33  [Item("InversionMoveTabuMaker", "Declares a given inversion move (2-opt) as tabu, by adding its attributes to the tabu list and also store the solution quality or the move quality (whichever is better).")]
34  [StorableClass]
35  public class InversionMoveTabuMaker : TabuMaker, IPermutationInversionMoveOperator {
36    public ILookupParameter<Permutation> PermutationParameter {
37      get { return (ILookupParameter<Permutation>)Parameters["Permutation"]; }
38    }
39    public ILookupParameter<InversionMove> InversionMoveParameter {
40      get { return (LookupParameter<InversionMove>)Parameters["InversionMove"]; }
41    }
42
43    public InversionMoveTabuMaker()
44      : base() {
45      Parameters.Add(new LookupParameter<InversionMove>("InversionMove", "The move that was made."));
46      Parameters.Add(new LookupParameter<Permutation>("Permutation", "The solution as permutation."));
47    }
48
49    protected override IItem GetTabuAttribute(bool maximization, double quality, double moveQuality) {
50      InversionMove move = InversionMoveParameter.ActualValue;
51      Permutation permutation = PermutationParameter.ActualValue;
52      double baseQuality = moveQuality;
53      if (maximization && quality > moveQuality || !maximization && quality < moveQuality) baseQuality = quality; // we make an uphill move, the lower bound is the solution quality
54      if (permutation.PermutationType == PermutationTypes.Absolute)
55        return new InversionMoveAbsoluteAttribute(move.Index1, permutation[move.Index1], move.Index2, permutation[move.Index2], baseQuality);
56      else
57        return new InversionMoveRelativeAttribute(permutation.GetCircular(move.Index1 - 1),
58          permutation[move.Index1],
59          permutation[move.Index2],
60          permutation.GetCircular(move.Index2 + 1),
61          baseQuality);
62    }
63  }
64}
Note: See TracBrowser for help on using the repository browser.