#region License Information
/* HeuristicLab
* Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System.Linq;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Data;
using HeuristicLab.Operators;
using HeuristicLab.Optimization;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Algorithms.TabuSearch {
[StorableClass]
[Item("TabuNeighborhoodAnalyzer", "Analyzes the tabu neighborhood")]
public class TabuNeighborhoodAnalyzer : SingleSuccessorOperator, IAnalyzer {
public virtual bool EnabledByDefault {
get { return true; }
}
public ScopeTreeLookupParameter IsTabuParameter {
get { return (ScopeTreeLookupParameter)Parameters["IsTabu"]; }
}
public LookupParameter PercentTabuParameter {
get { return (LookupParameter)Parameters["PercentTabu"]; }
}
public LookupParameter ResultsParameter {
get { return (LookupParameter)Parameters["Results"]; }
}
[StorableConstructor]
protected TabuNeighborhoodAnalyzer(bool deserializing) : base(deserializing) { }
protected TabuNeighborhoodAnalyzer(TabuNeighborhoodAnalyzer original, Cloner cloner)
: base(original, cloner) {
}
public override IDeepCloneable Clone(Cloner cloner) {
return new TabuNeighborhoodAnalyzer(this, cloner);
}
public TabuNeighborhoodAnalyzer()
: base() {
Parameters.Add(new ScopeTreeLookupParameter("IsTabu", "A value that determines if a move is tabu or not."));
Parameters.Add(new LookupParameter("PercentTabu", "Indicates how much of the neighborhood is tabu."));
Parameters.Add(new LookupParameter("Results", "The result collection where the value should be stored."));
}
public override IOperation Apply() {
ItemArray tabu = IsTabuParameter.ActualValue;
if (tabu.Length > 0) {
PercentValue value = PercentTabuParameter.ActualValue;
if (value == null) {
value = new PercentValue();
PercentTabuParameter.ActualValue = value;
}
value.Value = tabu.Where(x => x.Value).Count() / (double)tabu.Length;
ResultCollection results = ResultsParameter.ActualValue;
if (results != null) {
IResult result = null;
results.TryGetValue(PercentTabuParameter.ActualName, out result);
if (result != null)
result.Value = value;
else
results.Add(new Result(PercentTabuParameter.ActualName, "Indicates how much of the neighborhood is tabu.", (IItem)value.Clone()));
}
}
return base.Apply();
}
}
}