Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMoveTabuMaker.cs @ 14243

Last change on this file since 14243 was 7505, checked in by abeham, 13 years ago

#1614

  • added instances of Cordeau et al. as given by L. Moccia
  • added operators for tabu search
File size: 3.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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 HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Encodings.IntegerVectorEncoding;
26using HeuristicLab.Optimization.Operators;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Moves {
31  [Item("N-Move TabuMaker", "Declares an N-Move tabu.")]
32  [StorableClass]
33  public class NMoveTabuMaker : TabuMaker, IGQAPNMoveOperator, IAssignmentAwareGQAPOperator,
34    IMoveQualityAwareGQAPOperator {
35
36    public ILookupParameter<IntegerVector> AssignmentParameter {
37      get { return (ILookupParameter<IntegerVector>)Parameters["Assignment"]; }
38    }
39    public ILookupParameter<NMove> MoveParameter {
40      get { return (ILookupParameter<NMove>)Parameters["Move"]; }
41    }
42    ILookupParameter<BoolValue> IMoveQualityAwareGQAPOperator.MaximizationParameter {
43      get { return (ILookupParameter<BoolValue>)MaximizationParameter; }
44    }
45    public ILookupParameter<DoubleValue> MoveFlowDistanceQualityParameter {
46      get { return (ILookupParameter<DoubleValue>)Parameters["MoveFlowDistanceQuality"]; }
47    }
48    public ILookupParameter<DoubleValue> MoveInstallationQualityParameter {
49      get { return (ILookupParameter<DoubleValue>)Parameters["MoveInstallationQuality"]; }
50    }
51    public ILookupParameter<DoubleValue> MoveOverbookedCapacityParameter {
52      get { return (ILookupParameter<DoubleValue>)Parameters["MoveOverbookedCapacity"]; }
53    }
54
55    [StorableConstructor]
56    protected NMoveTabuMaker(bool deserializing) : base(deserializing) { }
57    protected NMoveTabuMaker(NMoveTabuMaker original, Cloner cloner) : base(original, cloner) { }
58    public NMoveTabuMaker()
59      : base() {
60      Parameters.Add(new LookupParameter<IntegerVector>("Assignment", GQAPSolutionCreator.AssignmentDescription));
61      Parameters.Add(new LookupParameter<NMove>("Move", GQAPNMoveGenerator.MoveDescription));
62      Parameters.Add(new LookupParameter<DoubleValue>("MoveFlowDistanceQuality", GQAPNMoveEvaluator.MoveFlowDistanceQualityDescription));
63      Parameters.Add(new LookupParameter<DoubleValue>("MoveInstallationQuality", GQAPNMoveEvaluator.MoveInstallationQualityDescription));
64      Parameters.Add(new LookupParameter<DoubleValue>("MoveOverbookedCapacity", GQAPNMoveEvaluator.MoveOverbookedCapacityDescription));
65    }
66
67    public override IDeepCloneable Clone(Cloner cloner) {
68      return new NMoveTabuMaker(this, cloner);
69    }
70
71    protected override IItem GetTabuAttribute(bool maximization, double quality, double moveQuality) {
72      var move = MoveParameter.ActualValue;
73      var assignment = AssignmentParameter.ActualValue;
74      double baseQuality = moveQuality;
75      if (maximization && quality > moveQuality || !maximization && quality < moveQuality) baseQuality = quality; // we make an uphill move, the lower bound is the solution quality
76      return new NMoveAbsoluteTabuAttribute(move, assignment, baseQuality);
77    }
78  }
79}
Note: See TracBrowser for help on using the repository browser.