[7505] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16728] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[7505] | 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;
|
---|
| 23 | using HeuristicLab.Core;
|
---|
| 24 | using HeuristicLab.Data;
|
---|
| 25 | using HeuristicLab.Encodings.IntegerVectorEncoding;
|
---|
| 26 | using HeuristicLab.Operators;
|
---|
| 27 | using HeuristicLab.Optimization;
|
---|
| 28 | using HeuristicLab.Parameters;
|
---|
| 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[16728] | 30 | using HEAL.Attic;
|
---|
[7505] | 31 |
|
---|
| 32 | namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Moves {
|
---|
| 33 | [Item("N-Move TabuChecker", "Checks if a certain N-Move is tabu.")]
|
---|
[16728] | 34 | [StorableType("8E122154-5BCE-404A-8AD4-6C30912B3E89")]
|
---|
[7505] | 35 | public class NMoveTabuChecker : SingleSuccessorOperator, ITabuChecker,
|
---|
[15504] | 36 | IGQAPNMoveOperator, IMoveQualityAwareGQAPOperator {
|
---|
[7505] | 37 | public override bool CanChangeName {
|
---|
| 38 | get { return false; }
|
---|
| 39 | }
|
---|
[15504] | 40 | public IValueLookupParameter<BoolValue> MaximizationParameter {
|
---|
| 41 | get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
| 42 | }
|
---|
[7505] | 43 | public ILookupParameter<NMove> MoveParameter {
|
---|
| 44 | get { return (ILookupParameter<NMove>)Parameters["Move"]; }
|
---|
| 45 | }
|
---|
| 46 | public ILookupParameter<IntegerVector> AssignmentParameter {
|
---|
| 47 | get { return (ILookupParameter<IntegerVector>)Parameters["Assignment"]; }
|
---|
| 48 | }
|
---|
| 49 | public ILookupParameter<ItemList<IItem>> TabuListParameter {
|
---|
| 50 | get { return (ILookupParameter<ItemList<IItem>>)Parameters["TabuList"]; }
|
---|
| 51 | }
|
---|
| 52 | public ILookupParameter<BoolValue> MoveTabuParameter {
|
---|
| 53 | get { return (ILookupParameter<BoolValue>)Parameters["MoveTabu"]; }
|
---|
| 54 | }
|
---|
| 55 | public ILookupParameter<DoubleValue> MoveQualityParameter {
|
---|
| 56 | get { return (ILookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
|
---|
| 57 | }
|
---|
[15504] | 58 | public ILookupParameter<Evaluation> MoveEvaluationParameter {
|
---|
| 59 | get { return (ILookupParameter<Evaluation>)Parameters["MoveEvaluation"]; }
|
---|
[7505] | 60 | }
|
---|
| 61 | public IValueParameter<BoolValue> UseAspirationCriterionParameter {
|
---|
| 62 | get { return (IValueParameter<BoolValue>)Parameters["UseAspirationCriterion"]; }
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | public BoolValue UseAspirationCriterion {
|
---|
| 66 | get { return UseAspirationCriterionParameter.Value; }
|
---|
| 67 | set { UseAspirationCriterionParameter.Value = value; }
|
---|
| 68 | }
|
---|
| 69 |
|
---|
| 70 | [StorableConstructor]
|
---|
[16728] | 71 | protected NMoveTabuChecker(StorableConstructorFlag _) : base(_) { }
|
---|
[7505] | 72 | protected NMoveTabuChecker(NMoveTabuChecker original, Cloner cloner) : base(original, cloner) { }
|
---|
| 73 | public NMoveTabuChecker()
|
---|
| 74 | : base() {
|
---|
[15504] | 75 | Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", ""));
|
---|
[7505] | 76 | Parameters.Add(new LookupParameter<NMove>("Move", GQAPNMoveGenerator.MoveDescription));
|
---|
| 77 | Parameters.Add(new LookupParameter<IntegerVector>("Assignment", GQAPSolutionCreator.AssignmentDescription));
|
---|
| 78 | Parameters.Add(new LookupParameter<ItemList<IItem>>("TabuList", "The tabu list contains previous move attributes."));
|
---|
| 79 | Parameters.Add(new LookupParameter<BoolValue>("MoveTabu", "Declares if a move is tabu or not."));
|
---|
| 80 | Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", GQAPNMoveEvaluator.MoveQualityDescription));
|
---|
[15504] | 81 | Parameters.Add(new LookupParameter<Evaluation>("MoveEvaluation", GQAPNMoveEvaluator.MoveEvaluationDescription));
|
---|
[7505] | 82 | Parameters.Add(new ValueParameter<BoolValue>("UseAspirationCriterion", "Whether moves can be aspired.", new BoolValue(true)));
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 86 | return new NMoveTabuChecker(this, cloner);
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | public override IOperation Apply() {
|
---|
| 90 | ItemList<IItem> tabuList = TabuListParameter.ActualValue;
|
---|
| 91 | var move = MoveParameter.ActualValue;
|
---|
| 92 | var assignment = AssignmentParameter.ActualValue;
|
---|
| 93 | int length = assignment.Length;
|
---|
| 94 | double moveQuality = MoveQualityParameter.ActualValue.Value;
|
---|
| 95 | bool maximization = MaximizationParameter.ActualValue.Value;
|
---|
| 96 | bool useAspiration = UseAspirationCriterion.Value;
|
---|
| 97 |
|
---|
| 98 | bool isTabu = EvaluateTabuState(tabuList, move, assignment, moveQuality, maximization, useAspiration);
|
---|
| 99 |
|
---|
| 100 | MoveTabuParameter.ActualValue = new BoolValue(isTabu);
|
---|
| 101 | return base.Apply();
|
---|
| 102 | }
|
---|
| 103 |
|
---|
| 104 | private bool EvaluateTabuState(ItemList<IItem> tabuList, NMove move, IntegerVector assignment, double moveQuality, bool maximization, bool useAspiration) {
|
---|
| 105 | bool isTabu = false;
|
---|
| 106 | foreach (var t in tabuList) {
|
---|
| 107 | var attribute = (t as NMoveAbsoluteTabuAttribute);
|
---|
| 108 | if (attribute == null) continue;
|
---|
| 109 | if (!useAspiration
|
---|
| 110 | || maximization && moveQuality <= attribute.MoveQuality
|
---|
| 111 | || !maximization && moveQuality >= attribute.MoveQuality) {
|
---|
| 112 | isTabu = true;
|
---|
| 113 | foreach (var kvp in attribute.OldAssignments) {
|
---|
[15511] | 114 | var assignedLoc = move.Reassignments[kvp.Item1] - 1; // location is given 1-based
|
---|
| 115 | if (assignedLoc >= 0 && assignedLoc != kvp.Item2) {
|
---|
| 116 | isTabu = false;
|
---|
| 117 | break;
|
---|
[7505] | 118 | }
|
---|
| 119 | }
|
---|
| 120 | }
|
---|
| 121 | if (isTabu) break;
|
---|
| 122 | }
|
---|
| 123 | return isTabu;
|
---|
| 124 | }
|
---|
| 125 | }
|
---|
| 126 | }
|
---|