[3221] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3221] | 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 System;
|
---|
[4722] | 23 | using HeuristicLab.Common;
|
---|
[3221] | 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Operators;
|
---|
| 27 | using HeuristicLab.Optimization;
|
---|
| 28 | using HeuristicLab.Parameters;
|
---|
| 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Encodings.PermutationEncoding {
|
---|
[3340] | 32 | [Item("InversionMoveHardTabuCriterion", @"For relative postion encoded permutations it prevents readding of previously deleted edges as well as deleting previously added edges.
|
---|
| 33 | For absolute position encoded permutations it prevents moving a number if it was previously moved.
|
---|
| 34 |
|
---|
| 35 | If the aspiration condition is activated, a move will not be considered tabu against a move in the tabu list if it leads to a better solution than the quality recorded with the move in the tabu list.")]
|
---|
[3221] | 36 | [StorableClass]
|
---|
[3340] | 37 | public class InversionMoveHardTabuCriterion : SingleSuccessorOperator, IPermutationInversionMoveOperator, ITabuChecker {
|
---|
[3221] | 38 | public override bool CanChangeName {
|
---|
| 39 | get { return false; }
|
---|
| 40 | }
|
---|
[3232] | 41 | public ILookupParameter<InversionMove> InversionMoveParameter {
|
---|
| 42 | get { return (LookupParameter<InversionMove>)Parameters["InversionMove"]; }
|
---|
[3221] | 43 | }
|
---|
| 44 | public ILookupParameter<Permutation> PermutationParameter {
|
---|
| 45 | get { return (LookupParameter<Permutation>)Parameters["Permutation"]; }
|
---|
| 46 | }
|
---|
| 47 | public ILookupParameter<ItemList<IItem>> TabuListParameter {
|
---|
| 48 | get { return (ILookupParameter<ItemList<IItem>>)Parameters["TabuList"]; }
|
---|
| 49 | }
|
---|
| 50 | public ILookupParameter<BoolValue> MoveTabuParameter {
|
---|
| 51 | get { return (ILookupParameter<BoolValue>)Parameters["MoveTabu"]; }
|
---|
| 52 | }
|
---|
[3340] | 53 | public IValueLookupParameter<BoolValue> MaximizationParameter {
|
---|
| 54 | get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
[3221] | 55 | }
|
---|
[3340] | 56 | public ILookupParameter<DoubleValue> MoveQualityParameter {
|
---|
| 57 | get { return (ILookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
|
---|
| 58 | }
|
---|
| 59 | public ValueParameter<BoolValue> UseAspirationCriterionParameter {
|
---|
| 60 | get { return (ValueParameter<BoolValue>)Parameters["UseAspirationCriterion"]; }
|
---|
| 61 | }
|
---|
[3221] | 62 |
|
---|
[3340] | 63 | public BoolValue UseAspirationCriterion {
|
---|
| 64 | get { return UseAspirationCriterionParameter.Value; }
|
---|
| 65 | set { UseAspirationCriterionParameter.Value = value; }
|
---|
| 66 | }
|
---|
| 67 |
|
---|
[4722] | 68 | [StorableConstructor]
|
---|
| 69 | protected InversionMoveHardTabuCriterion(bool deserializing) : base(deserializing) { }
|
---|
| 70 | protected InversionMoveHardTabuCriterion(InversionMoveHardTabuCriterion original, Cloner cloner) : base(original, cloner) { }
|
---|
[3340] | 71 | public InversionMoveHardTabuCriterion()
|
---|
[3221] | 72 | : base() {
|
---|
[3232] | 73 | Parameters.Add(new LookupParameter<InversionMove>("InversionMove", "The move to evaluate."));
|
---|
[3221] | 74 | Parameters.Add(new LookupParameter<BoolValue>("MoveTabu", "The variable to store if a move was tabu."));
|
---|
| 75 | Parameters.Add(new LookupParameter<Permutation>("Permutation", "The solution as permutation."));
|
---|
| 76 | Parameters.Add(new LookupParameter<ItemList<IItem>>("TabuList", "The tabu list."));
|
---|
[3340] | 77 | Parameters.Add(new ValueParameter<BoolValue>("UseAspirationCriterion", "Whether to use the aspiration criterion or not.", new BoolValue(true)));
|
---|
| 78 | Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, else if it is a minimization problem."));
|
---|
| 79 | Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The quality of the current move."));
|
---|
[3221] | 80 | }
|
---|
| 81 |
|
---|
[4722] | 82 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 83 | return new InversionMoveHardTabuCriterion(this, cloner);
|
---|
| 84 | }
|
---|
| 85 |
|
---|
[3221] | 86 | public override IOperation Apply() {
|
---|
| 87 | ItemList<IItem> tabuList = TabuListParameter.ActualValue;
|
---|
[3232] | 88 | InversionMove move = InversionMoveParameter.ActualValue;
|
---|
[3221] | 89 | Permutation permutation = PermutationParameter.ActualValue;
|
---|
| 90 | int length = permutation.Length;
|
---|
[3340] | 91 | double moveQuality = MoveQualityParameter.ActualValue.Value;
|
---|
| 92 | bool maximization = MaximizationParameter.ActualValue.Value;
|
---|
| 93 | bool useAspiration = UseAspirationCriterion.Value;
|
---|
[3233] | 94 | bool isTabu = false;
|
---|
[3340] | 95 |
|
---|
[3233] | 96 | foreach (IItem tabuMove in tabuList) {
|
---|
[3340] | 97 | PermutationMoveAttribute attrib = (tabuMove as PermutationMoveAttribute);
|
---|
| 98 | if (!useAspiration
|
---|
| 99 | || maximization && moveQuality <= attrib.MoveQuality
|
---|
| 100 | || !maximization && moveQuality >= attrib.MoveQuality) {
|
---|
| 101 | switch (permutation.PermutationType) {
|
---|
| 102 | case PermutationTypes.RelativeUndirected: {
|
---|
| 103 | int E1S = permutation.GetCircular(move.Index1 - 1);
|
---|
| 104 | int E1T = permutation[move.Index1];
|
---|
| 105 | int E2S = permutation[move.Index2];
|
---|
| 106 | int E2T = permutation.GetCircular(move.Index2 + 1);
|
---|
| 107 | InversionMoveRelativeAttribute relAttrib = (attrib as InversionMoveRelativeAttribute);
|
---|
| 108 | if (relAttrib != null) {
|
---|
| 109 | if (relAttrib.Edge1Source == E1S && relAttrib.Edge2Source == E1T || relAttrib.Edge1Source == E1T && relAttrib.Edge2Source == E1S
|
---|
| 110 | || relAttrib.Edge1Source == E2S && relAttrib.Edge2Source == E2T || relAttrib.Edge1Source == E2T && relAttrib.Edge2Source == E2S
|
---|
| 111 | // if previously added Edge1Target-Edge2Target is deleted
|
---|
| 112 | || relAttrib.Edge1Target == E2S && relAttrib.Edge2Target == E2T || relAttrib.Edge1Target == E2T && relAttrib.Edge2Target == E2S
|
---|
| 113 | || relAttrib.Edge1Target == E1S && relAttrib.Edge2Target == E1T || relAttrib.Edge1Target == E1T && relAttrib.Edge2Target == E1S) {
|
---|
| 114 | isTabu = true;
|
---|
| 115 | }
|
---|
[3233] | 116 | }
|
---|
| 117 | }
|
---|
[3340] | 118 | break;
|
---|
| 119 | case PermutationTypes.RelativeDirected: {
|
---|
| 120 | int E1S = permutation.GetCircular(move.Index1 - 1);
|
---|
| 121 | int E1T = permutation[move.Index1];
|
---|
| 122 | int E2S = permutation[move.Index2];
|
---|
| 123 | int E2T = permutation.GetCircular(move.Index2 + 1);
|
---|
| 124 | InversionMoveRelativeAttribute relAttrib = (attrib as InversionMoveRelativeAttribute);
|
---|
| 125 | if (relAttrib != null) {
|
---|
| 126 | if (relAttrib.Edge1Source == E1S && relAttrib.Edge2Source == E1T
|
---|
| 127 | || relAttrib.Edge1Source == E2S && relAttrib.Edge2Source == E2T
|
---|
| 128 | // if previously added Edge1Target-Edge2Target is deleted
|
---|
| 129 | || relAttrib.Edge1Target == E2S && relAttrib.Edge2Target == E2T
|
---|
| 130 | || relAttrib.Edge1Target == E1S && relAttrib.Edge2Target == E1T) {
|
---|
| 131 | isTabu = true;
|
---|
| 132 | }
|
---|
[3233] | 133 | }
|
---|
| 134 | }
|
---|
[3340] | 135 | break;
|
---|
| 136 | case PermutationTypes.Absolute: {
|
---|
| 137 | int i1 = move.Index1;
|
---|
| 138 | int n1 = permutation[move.Index1];
|
---|
| 139 | int i2 = move.Index2;
|
---|
| 140 | int n2 = permutation[move.Index2];
|
---|
| 141 | InversionMoveAbsoluteAttribute absAttrib = (attrib as InversionMoveAbsoluteAttribute);
|
---|
| 142 | if (absAttrib != null) {
|
---|
| 143 | if (absAttrib.Number1 == n1 || absAttrib.Number1 == n2
|
---|
| 144 | || absAttrib.Number2 == n2 || absAttrib.Number2 == n1)
|
---|
| 145 | isTabu = true;
|
---|
[3233] | 146 |
|
---|
[3340] | 147 | }
|
---|
[3233] | 148 | }
|
---|
[3340] | 149 | break;
|
---|
| 150 | default: {
|
---|
| 151 | throw new InvalidOperationException(Name + ": Unknown permutation type.");
|
---|
| 152 | }
|
---|
| 153 | }
|
---|
[3221] | 154 | }
|
---|
[3233] | 155 | if (isTabu) break;
|
---|
[3221] | 156 | }
|
---|
| 157 | MoveTabuParameter.ActualValue = new BoolValue(isTabu);
|
---|
| 158 | return base.Apply();
|
---|
| 159 | }
|
---|
| 160 | }
|
---|
| 161 | }
|
---|