Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2943_MOBasicProblem_MOCMAES/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/MultiObjectiveTestFunctionProblem.cs @ 16171

Last change on this file since 16171 was 16171, checked in by bwerth, 6 years ago

#2943 worked on MOBasicProblem - added Interfaces;reworked MOCalculators; several minor changes

File size: 10.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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
21using System;
22using System.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Encodings.RealVectorEncoding;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31using HeuristicLab.Problems.Instances;
32
33namespace HeuristicLab.Problems.TestFunctions.MultiObjective {
34  [StorableClass]
35  [Creatable(CreatableAttribute.Categories.Problems, Priority = 95)]
36  [Item("Test Function (multi-objective)", "Test functions with real valued inputs and multiple objectives.")]
37  public class MultiObjectiveTestFunctionProblem : MultiObjectiveBasicProblem<RealVectorEncoding>, IProblemInstanceConsumer<MOTFData> {
38
39    #region Parameter Properties
40    public new IValueParameter<BoolArray> MaximizationParameter {
41      get { return (IValueParameter<BoolArray>)Parameters["Maximization"]; }
42    }
43    public IFixedValueParameter<IntValue> ProblemSizeParameter {
44      get { return (IFixedValueParameter<IntValue>)Parameters["ProblemSize"]; }
45    }
46    public IFixedValueParameter<IntValue> ObjectivesParameter {
47      get { return (IFixedValueParameter<IntValue>)Parameters["Objectives"]; }
48    }
49    public IValueParameter<DoubleMatrix> BoundsParameter {
50      get { return (IValueParameter<DoubleMatrix>)Parameters["Bounds"]; }
51    }
52    public IValueParameter<IMultiObjectiveTestFunction> TestFunctionParameter {
53      get { return (IValueParameter<IMultiObjectiveTestFunction>)Parameters["TestFunction"]; }
54    }
55
56    #endregion
57
58    #region Properties
59    public override bool[] Maximization {
60      get{ return Parameters.ContainsKey(MaximizationParameterName) ? MaximizationParameter.Value.CloneAsArray() : new Fonseca().Maximization(2); }
61    }
62
63    public int ProblemSize {
64      get { return ProblemSizeParameter.Value.Value; }
65      set { ProblemSizeParameter.Value.Value = value; }
66    }
67    public int Objectives {
68      get { return ObjectivesParameter.Value.Value; }
69      set { ObjectivesParameter.Value.Value = value; }
70    }
71    public DoubleMatrix Bounds {
72      get { return BoundsParameter.Value; }
73      set { BoundsParameter.Value = value; }
74    }
75    public IMultiObjectiveTestFunction TestFunction {
76      get { return TestFunctionParameter.Value; }
77      set { TestFunctionParameter.Value = value; }
78    }
79    #endregion
80
81    [StorableConstructor]
82    protected MultiObjectiveTestFunctionProblem(bool deserializing) : base(deserializing) { }
83    [StorableHook(HookType.AfterDeserialization)]
84    private void AfterDeserialization() {
85      RegisterEventHandlers();
86    }
87
88    protected MultiObjectiveTestFunctionProblem(MultiObjectiveTestFunctionProblem original, Cloner cloner)
89      : base(original, cloner) {
90      RegisterEventHandlers();
91    }
92    public override IDeepCloneable Clone(Cloner cloner) {
93      return new MultiObjectiveTestFunctionProblem(this, cloner);
94    }
95
96    public MultiObjectiveTestFunctionProblem()
97      : base() {
98      Parameters.Add(new FixedValueParameter<IntValue>("ProblemSize", "The dimensionality of the problem instance (number of variables in the function).", new IntValue(2)));
99      Parameters.Add(new FixedValueParameter<IntValue>("Objectives", "The dimensionality of the solution vector (number of objectives).", new IntValue(2)));
100      Parameters.Add(new ValueParameter<DoubleMatrix>("Bounds", "The bounds of the solution given as either one line for all variables or a line for each variable. The first column specifies lower bound, the second upper bound.", new DoubleMatrix(new double[,] { { -4, 4 } })));
101      Parameters.Add(new ValueParameter<IMultiObjectiveTestFunction>("TestFunction", "The function that is to be optimized.", new Fonseca()));
102
103      Encoding.LengthParameter = ProblemSizeParameter;
104      Encoding.BoundsParameter = BoundsParameter;
105      BestKnownFrontParameter.Hidden = true;
106
107      UpdateParameterValues();
108      InitializeOperators();
109      RegisterEventHandlers();
110    }
111
112    private void RegisterEventHandlers() {
113      TestFunctionParameter.ValueChanged += TestFunctionParameterOnValueChanged;
114      ProblemSizeParameter.Value.ValueChanged += ProblemSizeOnValueChanged;
115      ObjectivesParameter.Value.ValueChanged += ObjectivesOnValueChanged;
116    }
117
118
119    public override void Analyze(Individual[] individuals, double[][] qualities, ResultCollection results, IRandom random) {
120      base.Analyze(individuals, qualities, results, random);
121      if (results.ContainsKey("Pareto Front"))
122        ((DoubleMatrix)results["Pareto Front"].Value).SortableView = true;
123    }
124
125    /// <summary>
126    /// Checks whether a given solution violates the contraints of this function.
127    /// </summary>
128    /// <param name="individual"></param>
129    /// <returns>a double array that holds the distances that describe how much every contraint is violated (0 is not violated). If the current TestFunction does not have constraints an array of length 0 is returned</returns>
130    public double[] CheckContraints(RealVector individual) {
131      var constrainedTestFunction = (IConstrainedTestFunction)TestFunction;
132      if (constrainedTestFunction != null) {
133        return constrainedTestFunction.CheckConstraints(individual, Objectives);
134      }
135      return new double[0];
136    }
137
138    public double[] Evaluate(RealVector individual) {
139      return TestFunction.Evaluate(individual, Objectives);
140    }
141
142    public override double[] Evaluate(Individual individual, IRandom random) {
143      return Evaluate(individual.RealVector());
144    }
145
146    public void Load(MOTFData data) {
147      TestFunction = data.TestFunction;
148    }
149
150    #region Events
151    private void UpdateParameterValues() {
152      Parameters.Remove(MaximizationParameterName);
153      Parameters.Add(new FixedValueParameter<BoolArray>(MaximizationParameterName, "Set to false if the problem should be minimized.", (BoolArray)new BoolArray(TestFunction.Maximization(Objectives)).AsReadOnly()));
154
155      Parameters.Remove(BestKnownFrontParameterName);
156      var front = TestFunction.OptimalParetoFront(Objectives);
157      var bkf = front != null ? (DoubleMatrix)Utilities.ToMatrix(front).AsReadOnly() : null;
158      Parameters.Add(new FixedValueParameter<DoubleMatrix>(BestKnownFrontParameterName, "A double matrix representing the best known qualites for this problem (aka points on the Pareto front). Points are to be given in a row-wise fashion.", bkf));
159
160      Parameters.Remove(ReferencePointParameterName);
161      Parameters.Add(new FixedValueParameter<DoubleArray>(ReferencePointParameterName, "The refrence point for hypervolume calculations on this problem", new DoubleArray(TestFunction.ReferencePoint(Objectives))));
162
163      BoundsParameter.Value = new DoubleMatrix(TestFunction.Bounds(Objectives));
164    }
165
166    protected override void OnEncodingChanged() {
167      base.OnEncodingChanged();
168      UpdateParameterValues();
169      ParameterizeAnalyzers();
170    }
171    protected override void OnEvaluatorChanged() {
172      base.OnEvaluatorChanged();
173      UpdateParameterValues();
174      ParameterizeAnalyzers();
175    }
176
177    private void TestFunctionParameterOnValueChanged(object sender, EventArgs eventArgs) {
178      ProblemSize = Math.Max(TestFunction.MinimumSolutionLength, Math.Min(ProblemSize, TestFunction.MaximumSolutionLength));
179      Objectives = Math.Max(TestFunction.MinimumObjectives, Math.Min(Objectives, TestFunction.MaximumObjectives));
180      Parameters.Remove(ReferencePointParameterName);
181      Parameters.Add(new FixedValueParameter<DoubleArray>(ReferencePointParameterName, "The refrence point for hypervolume calculations on this problem", new DoubleArray(TestFunction.ReferencePoint(Objectives))));
182      ParameterizeAnalyzers();
183      UpdateParameterValues();
184      OnReset();
185    }
186
187    private void ProblemSizeOnValueChanged(object sender, EventArgs eventArgs) {
188      ProblemSize = Math.Min(TestFunction.MaximumSolutionLength, Math.Max(TestFunction.MinimumSolutionLength, ProblemSize));
189      UpdateParameterValues();
190    }
191
192    private void ObjectivesOnValueChanged(object sender, EventArgs eventArgs) {
193      Objectives = Math.Min(TestFunction.MaximumObjectives, Math.Max(TestFunction.MinimumObjectives, Objectives));
194      UpdateParameterValues();
195    }
196
197    #endregion
198
199    #region Helpers
200    private void InitializeOperators() {
201      Operators.Add(new CrowdingAnalyzer());
202      Operators.Add(new GenerationalDistanceAnalyzer());
203      Operators.Add(new InvertedGenerationalDistanceAnalyzer());
204      Operators.Add(new HypervolumeAnalyzer());
205      Operators.Add(new SpacingAnalyzer());
206      Operators.Add(new ScatterPlotAnalyzer());
207
208      ParameterizeAnalyzers();
209    }
210
211    private IEnumerable<IMultiObjectiveTestFunctionAnalyzer> Analyzers {
212      get { return Operators.OfType<IMultiObjectiveTestFunctionAnalyzer>(); }
213    }
214
215    private void ParameterizeAnalyzers() {
216      foreach (var analyzer in Analyzers) {
217        analyzer.ResultsParameter.ActualName = "Results";
218        analyzer.QualitiesParameter.ActualName = Evaluator.QualitiesParameter.ActualName;
219        analyzer.TestFunctionParameter.ActualName = TestFunctionParameter.Name;
220        analyzer.BestKnownFrontParameter.ActualName = BestKnownFrontParameter.Name;
221
222        var scatterPlotAnalyzer = analyzer as ScatterPlotAnalyzer;
223        if (scatterPlotAnalyzer != null) {
224          scatterPlotAnalyzer.IndividualsParameter.ActualName = Encoding.Name;
225        }
226      }
227    }
228
229    #endregion
230  }
231}
232
Note: See TracBrowser for help on using the repository browser.