Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/Moves/OneBitflipMove/OneBitflipMoveTabuChecker.cs @ 16559

Last change on this file since 16559 was 16559, checked in by jkarder, 5 years ago

#2520: renamed Fossil to Attic and set version to 1.0.0-pre01

File size: 4.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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.Operators;
26using HeuristicLab.Optimization;
27using HeuristicLab.Parameters;
28using HEAL.Attic;
29
30namespace HeuristicLab.Encodings.BinaryVectorEncoding {
31  [Item("OneBitflipMoveTabuChecker", "Prevents peforming a one bitflip move again.")]
32  [StorableType("27523531-D19E-47ED-9397-F7457D41B85B")]
33  public class OneBitflipMoveTabuChecker : SingleSuccessorOperator, IOneBitflipMoveOperator, ITabuChecker {
34    public override bool CanChangeName {
35      get { return false; }
36    }
37    public ILookupParameter<OneBitflipMove> OneBitflipMoveParameter {
38      get { return (LookupParameter<OneBitflipMove>)Parameters["OneBitflipMove"]; }
39    }
40    public ILookupParameter<BinaryVector> BinaryVectorParameter {
41      get { return (LookupParameter<BinaryVector>)Parameters["BinaryVector"]; }
42    }
43    public ILookupParameter<ItemList<IItem>> TabuListParameter {
44      get { return (ILookupParameter<ItemList<IItem>>)Parameters["TabuList"]; }
45    }
46    public ILookupParameter<BoolValue> MoveTabuParameter {
47      get { return (ILookupParameter<BoolValue>)Parameters["MoveTabu"]; }
48    }
49    public IValueLookupParameter<BoolValue> MaximizationParameter {
50      get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
51    }
52    public ILookupParameter<DoubleValue> MoveQualityParameter {
53      get { return (ILookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
54    }
55    public ValueParameter<BoolValue> UseAspirationCriterionParameter {
56      get { return (ValueParameter<BoolValue>)Parameters["UseAspirationCriterion"]; }
57    }
58
59    public BoolValue UseAspirationCriterion {
60      get { return UseAspirationCriterionParameter.Value; }
61      set { UseAspirationCriterionParameter.Value = value; }
62    }
63
64    [StorableConstructor]
65    protected OneBitflipMoveTabuChecker(StorableConstructorFlag _) : base(_) { }
66    protected OneBitflipMoveTabuChecker(OneBitflipMoveTabuChecker original, Cloner cloner) : base(original, cloner) { }
67    public OneBitflipMoveTabuChecker()
68      : base() {
69      Parameters.Add(new LookupParameter<OneBitflipMove>("OneBitflipMove", "The move to evaluate."));
70      Parameters.Add(new LookupParameter<BoolValue>("MoveTabu", "The variable to store if a move was tabu."));
71      Parameters.Add(new LookupParameter<BinaryVector>("BinaryVector", "The solution as permutation."));
72      Parameters.Add(new LookupParameter<ItemList<IItem>>("TabuList", "The tabu list."));
73      Parameters.Add(new ValueParameter<BoolValue>("UseAspirationCriterion", "Whether to use the aspiration criterion or not.", new BoolValue(true)));
74      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, else if it is a minimization problem."));
75      Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The quality of the current move."));
76    }
77
78    public override IDeepCloneable Clone(Cloner cloner) {
79      return new OneBitflipMoveTabuChecker(this, cloner);
80    }
81
82    public override IOperation Apply() {
83      ItemList<IItem> tabuList = TabuListParameter.ActualValue;
84      OneBitflipMove move = OneBitflipMoveParameter.ActualValue;
85      double moveQuality = MoveQualityParameter.ActualValue.Value;
86      bool maximization = MaximizationParameter.ActualValue.Value;
87      bool useAspiration = UseAspirationCriterion.Value;
88      bool isTabu = false;
89      foreach (IItem tabuMove in tabuList) {
90        OneBitflipMoveAttribute attribute = (tabuMove as OneBitflipMoveAttribute);
91        if (attribute != null) {
92          if (!useAspiration
93            || maximization && moveQuality <= attribute.MoveQuality
94            || !maximization && moveQuality >= attribute.MoveQuality) {
95            if (attribute.Index == move.Index) {
96              isTabu = true;
97              break;
98            }
99          }
100        }
101      }
102      MoveTabuParameter.ActualValue = new BoolValue(isTabu);
103      return base.Apply();
104    }
105  }
106}
Note: See TracBrowser for help on using the repository browser.