#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 Joseph Helm and 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 HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Optimization.Operators;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
using HeuristicLab.Problems.BinPacking;
namespace HeuristicLab.Encodings.PackingEncoding.GroupingVector {
[Item("Grouping tabu maker", "Declares a given grouping move as tabu, by adding its attributes to the tabu list and also store the solution quality or the move quality (whichever is better).")]
[StorableClass]
public class GroupingTabuMaker : TabuMaker, IGroupingVectorMoveOperator {
public ILookupParameter PackingMoveParameter {
get { return (ILookupParameter)Parameters["PackingMove"]; }
}
public ILookupParameter GroupingVectorParameter {
get { return (ILookupParameter)Parameters["GroupingVector"]; }
}
[StorableConstructor]
protected GroupingTabuMaker(bool deserializing) : base(deserializing) { }
protected GroupingTabuMaker(GroupingTabuMaker original, Cloner cloner) : base(original, cloner) { }
public GroupingTabuMaker()
: base() {
Parameters.Add(new LookupParameter("PackingMove", "The move to evaluate."));
Parameters.Add(new LookupParameter("GroupingVector", "The solution to evaluate."));
}
public override IDeepCloneable Clone(Cloner cloner) {
return new GroupingTabuMaker(this, cloner);
}
protected override IItem GetTabuAttribute(bool maximization, double quality, double moveQuality) {
IPackingMove move = PackingMoveParameter.ActualValue;
GroupingVectorEncoding groupingVector = GroupingVectorParameter.ActualValue;
double baseQuality = moveQuality;
if (maximization && quality > moveQuality || !maximization && quality < moveQuality)
baseQuality = quality; // we make an uphill move, the lower bound is the solution quality
var gMove = move as GroupingMove;
if (gMove != null)
return gMove.GetAttribute(baseQuality);
else
return move.GetSolutionAfterMove();
}
}
}