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