[3150] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Drawing;
|
---|
| 25 | using System.Linq;
|
---|
| 26 | using HeuristicLab.Common;
|
---|
| 27 | using HeuristicLab.Core;
|
---|
| 28 | using HeuristicLab.Data;
|
---|
| 29 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
| 30 | using HeuristicLab.Optimization;
|
---|
| 31 | using HeuristicLab.Parameters;
|
---|
| 32 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 33 | using HeuristicLab.PluginInfrastructure;
|
---|
| 34 |
|
---|
[3170] | 35 | namespace HeuristicLab.Problems.TestFunctions {
|
---|
[3221] | 36 | [Item("Single Objective Test Function", "Test function with real valued inputs and a single objective.")]
|
---|
[3150] | 37 | [StorableClass]
|
---|
| 38 | [Creatable("Problems")]
|
---|
[4419] | 39 | public sealed class SingleObjectiveTestFunctionProblem : ParameterizedNamedItem, ISingleObjectiveProblem, IStorableContent {
|
---|
| 40 | public string Filename { get; set; }
|
---|
| 41 |
|
---|
[3336] | 42 | [Storable]
|
---|
[3450] | 43 | private StdDevStrategyVectorCreator strategyVectorCreator;
|
---|
[3336] | 44 | [Storable]
|
---|
[3450] | 45 | private StdDevStrategyVectorCrossover strategyVectorCrossover;
|
---|
[3336] | 46 | [Storable]
|
---|
[3450] | 47 | private StdDevStrategyVectorManipulator strategyVectorManipulator;
|
---|
[3336] | 48 |
|
---|
[3150] | 49 | public override Image ItemImage {
|
---|
[5287] | 50 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; }
|
---|
[3150] | 51 | }
|
---|
| 52 |
|
---|
| 53 | #region Parameter Properties
|
---|
| 54 | public ValueParameter<BoolValue> MaximizationParameter {
|
---|
| 55 | get { return (ValueParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
| 56 | }
|
---|
| 57 | IParameter ISingleObjectiveProblem.MaximizationParameter {
|
---|
| 58 | get { return MaximizationParameter; }
|
---|
| 59 | }
|
---|
| 60 | public ValueParameter<DoubleMatrix> BoundsParameter {
|
---|
| 61 | get { return (ValueParameter<DoubleMatrix>)Parameters["Bounds"]; }
|
---|
| 62 | }
|
---|
| 63 | public ValueParameter<IntValue> ProblemSizeParameter {
|
---|
| 64 | get { return (ValueParameter<IntValue>)Parameters["ProblemSize"]; }
|
---|
| 65 | }
|
---|
| 66 | public ValueParameter<IRealVectorCreator> SolutionCreatorParameter {
|
---|
| 67 | get { return (ValueParameter<IRealVectorCreator>)Parameters["SolutionCreator"]; }
|
---|
| 68 | }
|
---|
| 69 | IParameter IProblem.SolutionCreatorParameter {
|
---|
| 70 | get { return SolutionCreatorParameter; }
|
---|
| 71 | }
|
---|
[3170] | 72 | public ValueParameter<ISingleObjectiveTestFunctionProblemEvaluator> EvaluatorParameter {
|
---|
| 73 | get { return (ValueParameter<ISingleObjectiveTestFunctionProblemEvaluator>)Parameters["Evaluator"]; }
|
---|
[3150] | 74 | }
|
---|
| 75 | IParameter IProblem.EvaluatorParameter {
|
---|
| 76 | get { return EvaluatorParameter; }
|
---|
| 77 | }
|
---|
| 78 | public OptionalValueParameter<DoubleValue> BestKnownQualityParameter {
|
---|
| 79 | get { return (OptionalValueParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
|
---|
| 80 | }
|
---|
| 81 | IParameter ISingleObjectiveProblem.BestKnownQualityParameter {
|
---|
| 82 | get { return BestKnownQualityParameter; }
|
---|
| 83 | }
|
---|
[3781] | 84 | public OptionalValueParameter<RealVector> BestKnownSolutionParameter {
|
---|
| 85 | get { return (OptionalValueParameter<RealVector>)Parameters["BestKnownSolution"]; }
|
---|
| 86 | }
|
---|
[3150] | 87 | #endregion
|
---|
| 88 |
|
---|
| 89 | #region Properties
|
---|
[3154] | 90 | public BoolValue Maximization {
|
---|
| 91 | get { return MaximizationParameter.Value; }
|
---|
| 92 | set { MaximizationParameter.Value = value; }
|
---|
| 93 | }
|
---|
[3150] | 94 | public DoubleMatrix Bounds {
|
---|
| 95 | get { return BoundsParameter.Value; }
|
---|
| 96 | set { BoundsParameter.Value = value; }
|
---|
| 97 | }
|
---|
| 98 | public IntValue ProblemSize {
|
---|
| 99 | get { return ProblemSizeParameter.Value; }
|
---|
| 100 | set { ProblemSizeParameter.Value = value; }
|
---|
| 101 | }
|
---|
| 102 | public IRealVectorCreator SolutionCreator {
|
---|
| 103 | get { return SolutionCreatorParameter.Value; }
|
---|
| 104 | set { SolutionCreatorParameter.Value = value; }
|
---|
| 105 | }
|
---|
| 106 | ISolutionCreator IProblem.SolutionCreator {
|
---|
| 107 | get { return SolutionCreatorParameter.Value; }
|
---|
| 108 | }
|
---|
[3170] | 109 | public ISingleObjectiveTestFunctionProblemEvaluator Evaluator {
|
---|
[3150] | 110 | get { return EvaluatorParameter.Value; }
|
---|
| 111 | set { EvaluatorParameter.Value = value; }
|
---|
| 112 | }
|
---|
| 113 | ISingleObjectiveEvaluator ISingleObjectiveProblem.Evaluator {
|
---|
| 114 | get { return EvaluatorParameter.Value; }
|
---|
| 115 | }
|
---|
| 116 | IEvaluator IProblem.Evaluator {
|
---|
| 117 | get { return EvaluatorParameter.Value; }
|
---|
| 118 | }
|
---|
| 119 | public DoubleValue BestKnownQuality {
|
---|
| 120 | get { return BestKnownQualityParameter.Value; }
|
---|
| 121 | set { BestKnownQualityParameter.Value = value; }
|
---|
| 122 | }
|
---|
| 123 | public IEnumerable<IOperator> Operators {
|
---|
[3187] | 124 | get { return operators; }
|
---|
[3150] | 125 | }
|
---|
[3789] | 126 | private BestSingleObjectiveTestFunctionSolutionAnalyzer BestSingleObjectiveTestFunctionSolutionAnalyzer {
|
---|
| 127 | get { return operators.OfType<BestSingleObjectiveTestFunctionSolutionAnalyzer>().FirstOrDefault(); }
|
---|
[3647] | 128 | }
|
---|
[3150] | 129 | #endregion
|
---|
| 130 |
|
---|
[4098] | 131 | [Storable]
|
---|
| 132 | private List<IOperator> operators;
|
---|
| 133 |
|
---|
[3150] | 134 | [StorableConstructor]
|
---|
[4118] | 135 | private SingleObjectiveTestFunctionProblem(bool deserializing) : base(deserializing) { }
|
---|
[4722] | 136 | private SingleObjectiveTestFunctionProblem(SingleObjectiveTestFunctionProblem original, Cloner cloner)
|
---|
| 137 | : base(original, cloner) {
|
---|
| 138 | operators = original.operators.Where(x => original.IsNotFieldReferenced(x)).Select(x => cloner.Clone(x)).ToList();
|
---|
| 139 | strategyVectorCreator = cloner.Clone(original.strategyVectorCreator);
|
---|
| 140 | operators.Add(strategyVectorCreator);
|
---|
| 141 | strategyVectorCrossover = cloner.Clone(original.strategyVectorCrossover);
|
---|
| 142 | operators.Add(strategyVectorCrossover);
|
---|
| 143 | strategyVectorManipulator = cloner.Clone(original.strategyVectorManipulator);
|
---|
| 144 | operators.Add(strategyVectorManipulator);
|
---|
| 145 | AttachEventHandlers();
|
---|
| 146 | }
|
---|
[3170] | 147 | public SingleObjectiveTestFunctionProblem()
|
---|
[3150] | 148 | : base() {
|
---|
| 149 | UniformRandomRealVectorCreator creator = new UniformRandomRealVectorCreator();
|
---|
| 150 | AckleyEvaluator evaluator = new AckleyEvaluator();
|
---|
| 151 |
|
---|
| 152 | Parameters.Add(new ValueParameter<BoolValue>("Maximization", "Set to false as most test functions are minimization problems.", new BoolValue(evaluator.Maximization)));
|
---|
| 153 | Parameters.Add(new ValueParameter<DoubleMatrix>("Bounds", "The lower and upper bounds in each dimension.", evaluator.Bounds));
|
---|
| 154 | Parameters.Add(new ValueParameter<IntValue>("ProblemSize", "The dimension of the problem.", new IntValue(2)));
|
---|
[3685] | 155 | Parameters.Add(new ValueParameter<IRealVectorCreator>("SolutionCreator", "The operator which should be used to create new test function solutions.", creator));
|
---|
| 156 | Parameters.Add(new ValueParameter<ISingleObjectiveTestFunctionProblemEvaluator>("Evaluator", "The operator which should be used to evaluate test function solutions.", evaluator));
|
---|
| 157 | Parameters.Add(new OptionalValueParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution of this test function.", new DoubleValue(evaluator.BestKnownQuality)));
|
---|
[3781] | 158 | Parameters.Add(new OptionalValueParameter<RealVector>("BestKnownSolution", "The best known solution for this test function instance."));
|
---|
[3150] | 159 |
|
---|
[3450] | 160 | strategyVectorCreator = new StdDevStrategyVectorCreator();
|
---|
[3336] | 161 | strategyVectorCreator.LengthParameter.ActualName = ProblemSizeParameter.Name;
|
---|
[3450] | 162 | strategyVectorCrossover = new StdDevStrategyVectorCrossover();
|
---|
| 163 | strategyVectorManipulator = new StdDevStrategyVectorManipulator();
|
---|
| 164 | strategyVectorManipulator.LearningRateParameter.Value = new DoubleValue(0.5);
|
---|
| 165 | strategyVectorManipulator.GeneralLearningRateParameter.Value = new DoubleValue(0.5);
|
---|
[3336] | 166 |
|
---|
[3150] | 167 | creator.RealVectorParameter.ActualName = "Point";
|
---|
| 168 | ParameterizeSolutionCreator();
|
---|
| 169 | ParameterizeEvaluator();
|
---|
| 170 |
|
---|
[4098] | 171 | InitializeOperators();
|
---|
| 172 | AttachEventHandlers();
|
---|
[3783] | 173 | UpdateStrategyVectorBounds();
|
---|
[3150] | 174 | }
|
---|
| 175 |
|
---|
| 176 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[4722] | 177 | return new SingleObjectiveTestFunctionProblem(this, cloner);
|
---|
[3150] | 178 | }
|
---|
| 179 |
|
---|
[4098] | 180 | private bool IsNotFieldReferenced(IOperator x) {
|
---|
| 181 | return !(x == strategyVectorCreator
|
---|
| 182 | || x == strategyVectorCrossover
|
---|
| 183 | || x == strategyVectorManipulator);
|
---|
| 184 | }
|
---|
| 185 |
|
---|
[3150] | 186 | #region Events
|
---|
| 187 | public event EventHandler SolutionCreatorChanged;
|
---|
| 188 | private void OnSolutionCreatorChanged() {
|
---|
[3739] | 189 | EventHandler handler = SolutionCreatorChanged;
|
---|
| 190 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[3150] | 191 | }
|
---|
| 192 | public event EventHandler EvaluatorChanged;
|
---|
| 193 | private void OnEvaluatorChanged() {
|
---|
[3739] | 194 | EventHandler handler = EvaluatorChanged;
|
---|
| 195 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[3150] | 196 | }
|
---|
| 197 | public event EventHandler OperatorsChanged;
|
---|
| 198 | private void OnOperatorsChanged() {
|
---|
[3739] | 199 | EventHandler handler = OperatorsChanged;
|
---|
| 200 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
[3150] | 201 | }
|
---|
[3739] | 202 | public event EventHandler Reset;
|
---|
| 203 | private void OnReset() {
|
---|
| 204 | EventHandler handler = Reset;
|
---|
| 205 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 206 | }
|
---|
| 207 |
|
---|
[3150] | 208 | private void ProblemSizeParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 209 | ProblemSize.ValueChanged += new EventHandler(ProblemSize_ValueChanged);
|
---|
| 210 | ProblemSize_ValueChanged(null, EventArgs.Empty);
|
---|
| 211 | }
|
---|
| 212 | private void ProblemSize_ValueChanged(object sender, EventArgs e) {
|
---|
[3336] | 213 | if (ProblemSize.Value < 1) ProblemSize.Value = 1;
|
---|
[3150] | 214 | ParameterizeSolutionCreator();
|
---|
[3781] | 215 | ParameterizeEvaluator();
|
---|
[3336] | 216 | strategyVectorManipulator.GeneralLearningRateParameter.Value = new DoubleValue(1.0 / Math.Sqrt(2 * ProblemSize.Value));
|
---|
| 217 | strategyVectorManipulator.LearningRateParameter.Value = new DoubleValue(1.0 / Math.Sqrt(2 * Math.Sqrt(ProblemSize.Value)));
|
---|
[3781] | 218 | OnReset();
|
---|
[3150] | 219 | }
|
---|
| 220 | private void SolutionCreatorParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 221 | ParameterizeSolutionCreator();
|
---|
[3647] | 222 | ParameterizeAnalyzers();
|
---|
[3150] | 223 | SolutionCreator_RealVectorParameter_ActualNameChanged(null, EventArgs.Empty);
|
---|
[3865] | 224 | OnSolutionCreatorChanged();
|
---|
[3150] | 225 | }
|
---|
| 226 | private void SolutionCreator_RealVectorParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 227 | ParameterizeEvaluator();
|
---|
| 228 | ParameterizeOperators();
|
---|
[3647] | 229 | ParameterizeAnalyzers();
|
---|
[3150] | 230 | }
|
---|
| 231 | private void EvaluatorParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 232 | ParameterizeEvaluator();
|
---|
[3187] | 233 | UpdateMoveEvaluators();
|
---|
[3647] | 234 | ParameterizeAnalyzers();
|
---|
[3154] | 235 | Maximization.Value = Evaluator.Maximization;
|
---|
| 236 | BoundsParameter.Value = Evaluator.Bounds;
|
---|
| 237 | if (ProblemSize.Value < Evaluator.MinimumProblemSize)
|
---|
| 238 | ProblemSize.Value = Evaluator.MinimumProblemSize;
|
---|
| 239 | else if (ProblemSize.Value > Evaluator.MaximumProblemSize)
|
---|
| 240 | ProblemSize.Value = Evaluator.MaximumProblemSize;
|
---|
| 241 | BestKnownQuality = new DoubleValue(Evaluator.BestKnownQuality);
|
---|
[3150] | 242 | Evaluator_QualityParameter_ActualNameChanged(null, EventArgs.Empty);
|
---|
[3865] | 243 | OnEvaluatorChanged();
|
---|
[3781] | 244 | OnReset();
|
---|
[3150] | 245 | }
|
---|
| 246 | private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 247 | ParameterizeOperators();
|
---|
| 248 | }
|
---|
[3154] | 249 | private void BoundsParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 250 | Bounds.ToStringChanged += new EventHandler(Bounds_ToStringChanged);
|
---|
| 251 | Bounds_ToStringChanged(null, EventArgs.Empty);
|
---|
| 252 | }
|
---|
| 253 | private void Bounds_ToStringChanged(object sender, EventArgs e) {
|
---|
| 254 | if (Bounds.Columns != 2 || Bounds.Rows < 1)
|
---|
| 255 | Bounds = new DoubleMatrix(1, 2);
|
---|
[3781] | 256 | ParameterizeOperators();
|
---|
| 257 | UpdateStrategyVectorBounds();
|
---|
[3154] | 258 | }
|
---|
| 259 | private void Bounds_ItemChanged(object sender, EventArgs<int, int> e) {
|
---|
| 260 | if (e.Value2 == 0 && Bounds[e.Value, 1] <= Bounds[e.Value, 0])
|
---|
| 261 | Bounds[e.Value, 1] = Bounds[e.Value, 0] + 0.1;
|
---|
| 262 | if (e.Value2 == 1 && Bounds[e.Value, 0] >= Bounds[e.Value, 1])
|
---|
| 263 | Bounds[e.Value, 0] = Bounds[e.Value, 1] - 0.1;
|
---|
[3781] | 264 | ParameterizeOperators();
|
---|
| 265 | UpdateStrategyVectorBounds();
|
---|
[3154] | 266 | }
|
---|
[3187] | 267 | private void MoveGenerator_AdditiveMoveParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 268 | string name = ((ILookupParameter<AdditiveMove>)sender).ActualName;
|
---|
| 269 | foreach (IAdditiveRealVectorMoveOperator op in Operators.OfType<IAdditiveRealVectorMoveOperator>()) {
|
---|
| 270 | op.AdditiveMoveParameter.ActualName = name;
|
---|
| 271 | }
|
---|
[3182] | 272 | }
|
---|
[3318] | 273 | private void SphereEvaluator_Parameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 274 | SphereEvaluator eval = (Evaluator as SphereEvaluator);
|
---|
| 275 | if (eval != null) {
|
---|
| 276 | foreach (ISphereMoveEvaluator op in Operators.OfType<ISphereMoveEvaluator>()) {
|
---|
| 277 | op.C = eval.C;
|
---|
| 278 | op.Alpha = eval.Alpha;
|
---|
| 279 | }
|
---|
| 280 | }
|
---|
| 281 | }
|
---|
| 282 | private void RastriginEvaluator_Parameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 283 | RastriginEvaluator eval = (Evaluator as RastriginEvaluator);
|
---|
| 284 | if (eval != null) {
|
---|
| 285 | foreach (IRastriginMoveEvaluator op in Operators.OfType<IRastriginMoveEvaluator>()) {
|
---|
| 286 | op.A = eval.A;
|
---|
| 287 | }
|
---|
| 288 | }
|
---|
| 289 | }
|
---|
[3336] | 290 | private void strategyVectorCreator_BoundsParameter_ValueChanged(object sender, EventArgs e) {
|
---|
[3781] | 291 | strategyVectorManipulator.BoundsParameter.Value = (DoubleMatrix)strategyVectorCreator.BoundsParameter.Value.Clone();
|
---|
[3336] | 292 | }
|
---|
| 293 | private void strategyVectorCreator_StrategyParameterParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 294 | string name = strategyVectorCreator.StrategyParameterParameter.ActualName;
|
---|
| 295 | strategyVectorCrossover.ParentsParameter.ActualName = name;
|
---|
| 296 | strategyVectorCrossover.StrategyParameterParameter.ActualName = name;
|
---|
| 297 | strategyVectorManipulator.StrategyParameterParameter.ActualName = name;
|
---|
| 298 | }
|
---|
[3150] | 299 | #endregion
|
---|
| 300 |
|
---|
| 301 | #region Helpers
|
---|
| 302 | [StorableHook(HookType.AfterDeserialization)]
|
---|
[4722] | 303 | private void AfterDeserialization() {
|
---|
[4118] | 304 | // BackwardsCompatibility3.3
|
---|
| 305 | #region Backwards compatible code (remove with 3.4)
|
---|
| 306 | if (operators == null) InitializeOperators();
|
---|
| 307 | #endregion
|
---|
| 308 | AttachEventHandlers();
|
---|
| 309 | }
|
---|
| 310 |
|
---|
[4098] | 311 | private void AttachEventHandlers() {
|
---|
[3150] | 312 | ProblemSizeParameter.ValueChanged += new EventHandler(ProblemSizeParameter_ValueChanged);
|
---|
| 313 | ProblemSize.ValueChanged += new EventHandler(ProblemSize_ValueChanged);
|
---|
[3154] | 314 | BoundsParameter.ValueChanged += new EventHandler(BoundsParameter_ValueChanged);
|
---|
| 315 | Bounds.ToStringChanged += new EventHandler(Bounds_ToStringChanged);
|
---|
| 316 | Bounds.ItemChanged += new EventHandler<EventArgs<int, int>>(Bounds_ItemChanged);
|
---|
[3150] | 317 | SolutionCreatorParameter.ValueChanged += new EventHandler(SolutionCreatorParameter_ValueChanged);
|
---|
| 318 | SolutionCreator.RealVectorParameter.ActualNameChanged += new EventHandler(SolutionCreator_RealVectorParameter_ActualNameChanged);
|
---|
| 319 | EvaluatorParameter.ValueChanged += new EventHandler(EvaluatorParameter_ValueChanged);
|
---|
| 320 | Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
[3336] | 321 | strategyVectorCreator.BoundsParameter.ValueChanged += new EventHandler(strategyVectorCreator_BoundsParameter_ValueChanged);
|
---|
| 322 | strategyVectorCreator.StrategyParameterParameter.ActualNameChanged += new EventHandler(strategyVectorCreator_StrategyParameterParameter_ActualNameChanged);
|
---|
[3150] | 323 | }
|
---|
[3647] | 324 | private void ParameterizeAnalyzers() {
|
---|
[3789] | 325 | BestSingleObjectiveTestFunctionSolutionAnalyzer.RealVectorParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName;
|
---|
| 326 | BestSingleObjectiveTestFunctionSolutionAnalyzer.ResultsParameter.ActualName = "Results";
|
---|
| 327 | BestSingleObjectiveTestFunctionSolutionAnalyzer.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
|
---|
| 328 | BestSingleObjectiveTestFunctionSolutionAnalyzer.BestKnownQualityParameter.ActualName = BestKnownQualityParameter.Name;
|
---|
| 329 | BestSingleObjectiveTestFunctionSolutionAnalyzer.BestKnownSolutionParameter.ActualName = BestKnownSolutionParameter.Name;
|
---|
| 330 | BestSingleObjectiveTestFunctionSolutionAnalyzer.MaximizationParameter.ActualName = MaximizationParameter.Name;
|
---|
| 331 | BestSingleObjectiveTestFunctionSolutionAnalyzer.EvaluatorParameter.ActualName = EvaluatorParameter.Name;
|
---|
[3894] | 332 | BestSingleObjectiveTestFunctionSolutionAnalyzer.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
[3647] | 333 | }
|
---|
[3150] | 334 | private void InitializeOperators() {
|
---|
[3187] | 335 | operators = new List<IOperator>();
|
---|
[3647] | 336 | operators.Add(new BestSingleObjectiveTestFunctionSolutionAnalyzer());
|
---|
| 337 | ParameterizeAnalyzers();
|
---|
[3303] | 338 | operators.AddRange(ApplicationManager.Manager.GetInstances<IRealVectorOperator>().Cast<IOperator>());
|
---|
[3336] | 339 | operators.Add(strategyVectorCreator);
|
---|
| 340 | operators.Add(strategyVectorCrossover);
|
---|
| 341 | operators.Add(strategyVectorManipulator);
|
---|
[3209] | 342 | UpdateMoveEvaluators();
|
---|
| 343 | ParameterizeOperators();
|
---|
[3187] | 344 | InitializeMoveGenerators();
|
---|
[3150] | 345 | }
|
---|
[3187] | 346 | private void InitializeMoveGenerators() {
|
---|
| 347 | foreach (IAdditiveRealVectorMoveOperator op in Operators.OfType<IAdditiveRealVectorMoveOperator>()) {
|
---|
[3150] | 348 | if (op is IMoveGenerator) {
|
---|
[3187] | 349 | op.AdditiveMoveParameter.ActualNameChanged += new EventHandler(MoveGenerator_AdditiveMoveParameter_ActualNameChanged);
|
---|
[3150] | 350 | }
|
---|
| 351 | }
|
---|
[3187] | 352 | }
|
---|
| 353 | private void UpdateMoveEvaluators() {
|
---|
[3303] | 354 | foreach (ISingleObjectiveTestFunctionMoveEvaluator op in Operators.OfType<ISingleObjectiveTestFunctionMoveEvaluator>().ToList())
|
---|
| 355 | operators.Remove(op);
|
---|
| 356 | foreach (ISingleObjectiveTestFunctionMoveEvaluator op in ApplicationManager.Manager.GetInstances<ISingleObjectiveTestFunctionMoveEvaluator>())
|
---|
| 357 | if (op.EvaluatorType == Evaluator.GetType()) {
|
---|
| 358 | operators.Add(op);
|
---|
[3318] | 359 | #region Synchronize evaluator specific parameters with the parameters of the corresponding move evaluators
|
---|
| 360 | if (op is ISphereMoveEvaluator) {
|
---|
| 361 | SphereEvaluator e = (Evaluator as SphereEvaluator);
|
---|
| 362 | e.AlphaParameter.ValueChanged += new EventHandler(SphereEvaluator_Parameter_ValueChanged);
|
---|
| 363 | e.CParameter.ValueChanged += new EventHandler(SphereEvaluator_Parameter_ValueChanged);
|
---|
| 364 | ISphereMoveEvaluator em = (op as ISphereMoveEvaluator);
|
---|
| 365 | em.C = e.C;
|
---|
| 366 | em.Alpha = e.Alpha;
|
---|
| 367 | } else if (op is IRastriginMoveEvaluator) {
|
---|
| 368 | RastriginEvaluator e = (Evaluator as RastriginEvaluator);
|
---|
| 369 | e.AParameter.ValueChanged += new EventHandler(RastriginEvaluator_Parameter_ValueChanged);
|
---|
| 370 | IRastriginMoveEvaluator em = (op as IRastriginMoveEvaluator);
|
---|
| 371 | em.A = e.A;
|
---|
| 372 | }
|
---|
| 373 | #endregion
|
---|
[3303] | 374 | }
|
---|
| 375 | ParameterizeOperators();
|
---|
| 376 | OnOperatorsChanged();
|
---|
[3187] | 377 | }
|
---|
[3150] | 378 | private void ParameterizeSolutionCreator() {
|
---|
| 379 | SolutionCreator.LengthParameter.Value = new IntValue(ProblemSize.Value);
|
---|
| 380 | }
|
---|
| 381 | private void ParameterizeEvaluator() {
|
---|
| 382 | Evaluator.PointParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName;
|
---|
[3781] | 383 | BestKnownSolutionParameter.Value = Evaluator.GetBestKnownSolution(ProblemSize.Value);
|
---|
[3150] | 384 | }
|
---|
| 385 | private void ParameterizeOperators() {
|
---|
| 386 | foreach (IRealVectorCrossover op in Operators.OfType<IRealVectorCrossover>()) {
|
---|
| 387 | op.ParentsParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName;
|
---|
| 388 | op.ChildParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName;
|
---|
[3182] | 389 | op.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
[3150] | 390 | }
|
---|
| 391 | foreach (IRealVectorManipulator op in Operators.OfType<IRealVectorManipulator>()) {
|
---|
| 392 | op.RealVectorParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName;
|
---|
[3182] | 393 | op.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
[3150] | 394 | }
|
---|
[3187] | 395 | foreach (IRealVectorMoveOperator op in Operators.OfType<IRealVectorMoveOperator>()) {
|
---|
| 396 | op.RealVectorParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName;
|
---|
[3150] | 397 | }
|
---|
[3187] | 398 | foreach (IRealVectorMoveGenerator op in Operators.OfType<IRealVectorMoveGenerator>()) {
|
---|
| 399 | op.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
| 400 | }
|
---|
| 401 | foreach (ISingleObjectiveTestFunctionAdditiveMoveEvaluator op in Operators.OfType<ISingleObjectiveTestFunctionAdditiveMoveEvaluator>()) {
|
---|
| 402 | op.QualityParameter.ActualName = Evaluator.QualityParameter.ActualName;
|
---|
| 403 | op.RealVectorParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName;
|
---|
| 404 | }
|
---|
[3150] | 405 | }
|
---|
[3781] | 406 | private void UpdateStrategyVectorBounds() {
|
---|
| 407 | DoubleMatrix strategyBounds = (DoubleMatrix)Bounds.Clone();
|
---|
[5381] | 408 | for (int i = 0; i < strategyBounds.Rows; i++) {
|
---|
[3781] | 409 | if (strategyBounds[i, 0] < 0) strategyBounds[i, 0] = 0;
|
---|
[5381] | 410 | strategyBounds[i, 1] = 0.1 * (Bounds[i, 1] - Bounds[i, 0]);
|
---|
| 411 | }
|
---|
[3781] | 412 | strategyVectorCreator.BoundsParameter.Value = strategyBounds;
|
---|
| 413 | }
|
---|
[3150] | 414 | #endregion
|
---|
| 415 | }
|
---|
| 416 | }
|
---|