[7789] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[7789] | 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;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
| 27 | using HeuristicLab.Operators;
|
---|
[8086] | 28 | using HeuristicLab.Optimization;
|
---|
[7789] | 29 | using HeuristicLab.Parameters;
|
---|
| 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 31 |
|
---|
| 32 | namespace HeuristicLab.Problems.TestFunctions {
|
---|
| 33 | /// <summary>
|
---|
| 34 | /// An operator that improves test functions solutions.
|
---|
| 35 | /// </summary>
|
---|
[8319] | 36 | /// <remarks>
|
---|
[8322] | 37 | /// It is implemented as described in Laguna, M. and Martí, R. (2003). Scatter Search: Methodology and Implementations in C. Operations Research/Computer Science Interfaces Series, Vol. 24. Springer.<br />
|
---|
| 38 | /// The operator uses an implementation of the Nelder-Mead method with adaptive parameters as described in Gao, F. and Han, L. (2010). Implementing the Nelder-Mead simplex algorithm with adaptive parameters. Computational Optimization and Applications, Vol. 51. Springer. and conducts relection, expansion, contraction and reduction on the test functions solution.
|
---|
[8319] | 39 | /// </remarks>
|
---|
[8327] | 40 | [Item("SingleObjectiveTestFunctionImprovementOperator", "An operator that improves test functions solutions. It is implemented as described in Laguna, M. and Martí, R. (2003). Scatter Search: Methodology and Implementations in C. Operations Research/Computer Science Interfaces Series, Vol. 24. Springer.")]
|
---|
[7789] | 41 | [StorableClass]
|
---|
[8319] | 42 | public sealed class SingleObjectiveTestFunctionImprovementOperator : SingleSuccessorOperator, ISingleObjectiveImprovementOperator {
|
---|
[7789] | 43 | #region Parameter properties
|
---|
| 44 | public IValueParameter<DoubleValue> AlphaParameter {
|
---|
| 45 | get { return (IValueParameter<DoubleValue>)Parameters["Alpha"]; }
|
---|
| 46 | }
|
---|
| 47 | public IValueParameter<DoubleValue> BetaParameter {
|
---|
| 48 | get { return (IValueParameter<DoubleValue>)Parameters["Beta"]; }
|
---|
| 49 | }
|
---|
[7954] | 50 | public IValueLookupParameter<DoubleMatrix> BoundsParameter {
|
---|
| 51 | get { return (IValueLookupParameter<DoubleMatrix>)Parameters["Bounds"]; }
|
---|
| 52 | }
|
---|
[7789] | 53 | public ScopeParameter CurrentScopeParameter {
|
---|
| 54 | get { return (ScopeParameter)Parameters["CurrentScope"]; }
|
---|
| 55 | }
|
---|
| 56 | public IValueParameter<DoubleValue> DeltaParameter {
|
---|
| 57 | get { return (IValueParameter<DoubleValue>)Parameters["Delta"]; }
|
---|
| 58 | }
|
---|
| 59 | public IValueLookupParameter<ISingleObjectiveTestFunctionProblemEvaluator> EvaluatorParameter {
|
---|
| 60 | get { return (IValueLookupParameter<ISingleObjectiveTestFunctionProblemEvaluator>)Parameters["Evaluator"]; }
|
---|
| 61 | }
|
---|
| 62 | public IValueParameter<DoubleValue> GammaParameter {
|
---|
| 63 | get { return (IValueParameter<DoubleValue>)Parameters["Gamma"]; }
|
---|
| 64 | }
|
---|
| 65 | public IValueLookupParameter<IntValue> ImprovementAttemptsParameter {
|
---|
| 66 | get { return (IValueLookupParameter<IntValue>)Parameters["ImprovementAttempts"]; }
|
---|
| 67 | }
|
---|
[8319] | 68 | public IValueLookupParameter<IItem> SolutionParameter {
|
---|
| 69 | get { return (IValueLookupParameter<IItem>)Parameters["Solution"]; }
|
---|
[7789] | 70 | }
|
---|
| 71 | #endregion
|
---|
| 72 |
|
---|
| 73 | #region Properties
|
---|
| 74 | private DoubleValue Alpha {
|
---|
| 75 | get { return AlphaParameter.Value; }
|
---|
| 76 | }
|
---|
| 77 | private DoubleValue Beta {
|
---|
| 78 | get { return BetaParameter.Value; }
|
---|
| 79 | }
|
---|
[7954] | 80 | private DoubleMatrix Bounds {
|
---|
| 81 | get { return BoundsParameter.ActualValue; }
|
---|
| 82 | }
|
---|
[7789] | 83 | public IScope CurrentScope {
|
---|
| 84 | get { return CurrentScopeParameter.ActualValue; }
|
---|
| 85 | }
|
---|
| 86 | private DoubleValue Delta {
|
---|
| 87 | get { return DeltaParameter.Value; }
|
---|
| 88 | }
|
---|
| 89 | public ISingleObjectiveTestFunctionProblemEvaluator Evaluator {
|
---|
| 90 | get { return EvaluatorParameter.ActualValue; }
|
---|
| 91 | }
|
---|
| 92 | private DoubleValue Gamma {
|
---|
| 93 | get { return GammaParameter.Value; }
|
---|
| 94 | }
|
---|
| 95 | public IntValue ImprovementAttempts {
|
---|
| 96 | get { return ImprovementAttemptsParameter.ActualValue; }
|
---|
| 97 | }
|
---|
| 98 | #endregion
|
---|
| 99 |
|
---|
| 100 | [StorableConstructor]
|
---|
| 101 | private SingleObjectiveTestFunctionImprovementOperator(bool deserializing) : base(deserializing) { }
|
---|
| 102 | private SingleObjectiveTestFunctionImprovementOperator(SingleObjectiveTestFunctionImprovementOperator original, Cloner cloner) : base(original, cloner) { }
|
---|
| 103 | public SingleObjectiveTestFunctionImprovementOperator()
|
---|
| 104 | : base() {
|
---|
| 105 | #region Create parameters
|
---|
| 106 | Parameters.Add(new ValueParameter<DoubleValue>("Alpha", new DoubleValue(1.0)));
|
---|
| 107 | Parameters.Add(new ValueParameter<DoubleValue>("Beta", new DoubleValue(2.0)));
|
---|
[8086] | 108 | Parameters.Add(new ValueLookupParameter<DoubleMatrix>("Bounds", "The lower and upper bounds in each dimension."));
|
---|
| 109 | Parameters.Add(new ScopeParameter("CurrentScope", "The current scope that contains the solution to be improved."));
|
---|
[7789] | 110 | Parameters.Add(new ValueParameter<DoubleValue>("Delta", new DoubleValue(0.5)));
|
---|
[8086] | 111 | Parameters.Add(new ValueLookupParameter<ISingleObjectiveTestFunctionProblemEvaluator>("Evaluator", "The operator used to evaluate solutions."));
|
---|
[7789] | 112 | Parameters.Add(new ValueParameter<DoubleValue>("Gamma", new DoubleValue(0.5)));
|
---|
[8086] | 113 | Parameters.Add(new ValueLookupParameter<IntValue>("ImprovementAttempts", "The number of improvement attempts the operator should perform.", new IntValue(100)));
|
---|
[8319] | 114 | Parameters.Add(new ValueLookupParameter<IItem>("Solution", "The solution to be improved. This parameter is used for name translation only."));
|
---|
[7789] | 115 | #endregion
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 119 | return new SingleObjectiveTestFunctionImprovementOperator(this, cloner);
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | public override IOperation Apply() {
|
---|
[8319] | 123 | RealVector bestSol = CurrentScope.Variables[SolutionParameter.ActualName].Value as RealVector;
|
---|
[8086] | 124 | if (bestSol == null)
|
---|
| 125 | throw new ArgumentException("Cannot improve solution because it has the wrong type.");
|
---|
| 126 |
|
---|
[9407] | 127 | var evaluator = Evaluator;
|
---|
[7789] | 128 |
|
---|
[9407] | 129 | double bestSolQuality = evaluator.Evaluate(bestSol);
|
---|
| 130 |
|
---|
[7789] | 131 | // create perturbed solutions
|
---|
| 132 | RealVector[] simplex = new RealVector[bestSol.Length];
|
---|
| 133 | for (int i = 0; i < simplex.Length; i++) {
|
---|
| 134 | simplex[i] = bestSol.Clone() as RealVector;
|
---|
[7954] | 135 | simplex[i][i] += 0.1 * (Bounds[0, 1] - Bounds[0, 0]);
|
---|
| 136 | if (simplex[i][i] > Bounds[0, 1]) simplex[i][i] = Bounds[0, 1];
|
---|
| 137 | if (simplex[i][i] < Bounds[0, 0]) simplex[i][i] = Bounds[0, 0];
|
---|
[7789] | 138 | }
|
---|
| 139 |
|
---|
| 140 | // improve solutions
|
---|
| 141 | for (int i = 0; i < ImprovementAttempts.Value; i++) {
|
---|
| 142 | // order according to their objective function value
|
---|
[9407] | 143 | Array.Sort(simplex, (x, y) => evaluator.Evaluate(x).CompareTo(evaluator.Evaluate(y)));
|
---|
[7789] | 144 |
|
---|
| 145 | // calculate centroid
|
---|
| 146 | RealVector centroid = new RealVector(bestSol.Length);
|
---|
| 147 | foreach (var vector in simplex)
|
---|
| 148 | for (int j = 0; j < centroid.Length; j++)
|
---|
| 149 | centroid[j] += vector[j];
|
---|
| 150 | for (int j = 0; j < centroid.Length; j++)
|
---|
| 151 | centroid[j] /= simplex.Length;
|
---|
| 152 |
|
---|
| 153 | // reflection
|
---|
| 154 | RealVector reflectionPoint = new RealVector(bestSol.Length);
|
---|
| 155 | for (int j = 0; j < reflectionPoint.Length; j++)
|
---|
| 156 | reflectionPoint[j] = centroid[j] + Alpha.Value * (centroid[j] - simplex[simplex.Length - 1][j]);
|
---|
[9407] | 157 | double reflectionPointQuality = evaluator.Evaluate(reflectionPoint);
|
---|
| 158 | if (evaluator.Evaluate(simplex[0]) <= reflectionPointQuality
|
---|
| 159 | && reflectionPointQuality < evaluator.Evaluate(simplex[simplex.Length - 2]))
|
---|
[7789] | 160 | simplex[simplex.Length - 1] = reflectionPoint;
|
---|
| 161 |
|
---|
| 162 | // expansion
|
---|
[9407] | 163 | if (reflectionPointQuality < evaluator.Evaluate(simplex[0])) {
|
---|
[7789] | 164 | RealVector expansionPoint = new RealVector(bestSol.Length);
|
---|
| 165 | for (int j = 0; j < expansionPoint.Length; j++)
|
---|
| 166 | expansionPoint[j] = centroid[j] + Beta.Value * (reflectionPoint[j] - centroid[j]);
|
---|
[9407] | 167 | simplex[simplex.Length - 1] = evaluator.Evaluate(expansionPoint) < reflectionPointQuality ? expansionPoint : reflectionPoint;
|
---|
[7789] | 168 | }
|
---|
| 169 |
|
---|
| 170 | // contraction
|
---|
[9407] | 171 | if (evaluator.Evaluate(simplex[simplex.Length - 2]) <= reflectionPointQuality
|
---|
| 172 | && reflectionPointQuality < evaluator.Evaluate(simplex[simplex.Length - 1])) {
|
---|
[7789] | 173 | RealVector outsideContractionPoint = new RealVector(bestSol.Length);
|
---|
| 174 | for (int j = 0; j < outsideContractionPoint.Length; j++)
|
---|
| 175 | outsideContractionPoint[j] = centroid[j] + Gamma.Value * (reflectionPoint[j] - centroid[j]);
|
---|
[9407] | 176 | if (evaluator.Evaluate(outsideContractionPoint) <= reflectionPointQuality) {
|
---|
[7789] | 177 | simplex[simplex.Length - 1] = outsideContractionPoint;
|
---|
[9407] | 178 | if (evaluator.Evaluate(reflectionPoint) >= evaluator.Evaluate(simplex[simplex.Length - 1])) {
|
---|
[7789] | 179 | RealVector insideContractionPoint = new RealVector(bestSol.Length);
|
---|
| 180 | for (int j = 0; j < insideContractionPoint.Length; j++)
|
---|
| 181 | insideContractionPoint[j] = centroid[j] - Gamma.Value * (reflectionPoint[j] - centroid[j]);
|
---|
[9407] | 182 | if (evaluator.Evaluate(insideContractionPoint) < evaluator.Evaluate(simplex[simplex.Length - 1])) simplex[simplex.Length - 1] = insideContractionPoint;
|
---|
[7789] | 183 | }
|
---|
| 184 | }
|
---|
| 185 | }
|
---|
| 186 |
|
---|
| 187 | // reduction
|
---|
| 188 | for (int j = 1; j < simplex.Length; j++)
|
---|
| 189 | for (int k = 0; k < simplex[j].Length; k++)
|
---|
| 190 | simplex[j][k] = simplex[0][k] + Delta.Value * (simplex[j][k] - simplex[0][k]);
|
---|
| 191 | }
|
---|
| 192 |
|
---|
| 193 | for (int i = 0; i < simplex[0].Length; i++) {
|
---|
[7954] | 194 | if (simplex[0][i] > Bounds[0, 1]) simplex[0][i] = Bounds[0, 1];
|
---|
| 195 | if (simplex[0][i] < Bounds[0, 0]) simplex[0][i] = Bounds[0, 0];
|
---|
[7789] | 196 | }
|
---|
| 197 |
|
---|
[8319] | 198 | CurrentScope.Variables[SolutionParameter.ActualName].Value = simplex[0];
|
---|
[8086] | 199 | CurrentScope.Variables.Add(new Variable("LocalEvaluatedSolutions", ImprovementAttempts));
|
---|
[7789] | 200 |
|
---|
| 201 | return base.Apply();
|
---|
| 202 | }
|
---|
| 203 | }
|
---|
| 204 | }
|
---|