[4516] | 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.Linq;
|
---|
[4839] | 24 | using HeuristicLab.Common;
|
---|
[4516] | 25 | using HeuristicLab.Core;
|
---|
[4839] | 26 | using HeuristicLab.Data;
|
---|
[4516] | 27 | using HeuristicLab.Optimization;
|
---|
| 28 | using HeuristicLab.Parameters;
|
---|
[4839] | 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[4516] | 30 | using HeuristicLab.PluginInfrastructure;
|
---|
[5110] | 31 | using HeuristicLab.Algorithms.GeneticAlgorithm;
|
---|
| 32 | using HeuristicLab.Problems.TestFunctions;
|
---|
[4516] | 33 |
|
---|
| 34 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
| 35 | [Item("Meta Optimization Problem", "Represents a Meta Optimization Problem.")]
|
---|
| 36 | [Creatable("Problems")]
|
---|
| 37 | [StorableClass]
|
---|
[5111] | 38 | public sealed class MetaOptimizationProblem : SingleObjectiveProblem<IParameterConfigurationEvaluator, IParameterConfigurationCreator> {
|
---|
[5110] | 39 | public const string AlgorithmTypeParameterName = "AlgorithmType";
|
---|
| 40 | public const string ProblemTypeParameterName = "ProblemType";
|
---|
| 41 | public const string ProblemsParameterName = "Problems";
|
---|
[5328] | 42 | public const string ParameterConfigurationTreeParameterName = "ParameterConfiguration";
|
---|
[5110] | 43 | public const string RepetitionsParameterName = "Repetitions";
|
---|
[4516] | 44 |
|
---|
[5111] | 45 | public const string IntValueManipulatorParameterName = "IntValueManipulator";
|
---|
| 46 | public const string DoubleValueManipulatorParameterName = "DoubleValueManipulator";
|
---|
| 47 | public const string IntValueCrossoverParameterName = "IntValueCrossover";
|
---|
| 48 | public const string DoubleValueCrossoverParameterName = "DoubleValueCrossover";
|
---|
| 49 |
|
---|
[4516] | 50 | #region Parameter Properties
|
---|
[5337] | 51 | public IValueParameter<ConstrainedTypeValue<IAlgorithm>> AlgorithmTypeParameter {
|
---|
| 52 | get { return (ValueParameter<ConstrainedTypeValue<IAlgorithm>>)Parameters[AlgorithmTypeParameterName]; }
|
---|
[4516] | 53 | }
|
---|
[5337] | 54 | public IValueParameter<ConstrainedTypeValue<IProblem>> ProblemTypeParameter {
|
---|
| 55 | get { return (ValueParameter<ConstrainedTypeValue<IProblem>>)Parameters[ProblemTypeParameterName]; }
|
---|
[4516] | 56 | }
|
---|
[5337] | 57 | public IValueParameter<ConstrainedItemList<IProblem>> ProblemsParameter {
|
---|
| 58 | get { return (ValueParameter<ConstrainedItemList<IProblem>>)Parameters[ProblemsParameterName]; }
|
---|
[4516] | 59 | }
|
---|
[5144] | 60 | public IValueParameter<ParameterConfigurationTree> ParameterConfigurationTreeParameter {
|
---|
| 61 | get { return (ValueParameter<ParameterConfigurationTree>)Parameters[ParameterConfigurationTreeParameterName]; }
|
---|
[5110] | 62 | }
|
---|
| 63 | public IValueParameter<IntValue> RepetitionsParameter {
|
---|
| 64 | get { return (ValueParameter<IntValue>)Parameters[RepetitionsParameterName]; }
|
---|
| 65 | }
|
---|
[5111] | 66 |
|
---|
| 67 | public IValueParameter<IIntValueManipulator> IntValueManipulatorParameter {
|
---|
| 68 | get { return (ValueParameter<IIntValueManipulator>)Parameters[IntValueManipulatorParameterName]; }
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | public IValueParameter<IDoubleValueManipulator> DoubleValueManipulatorParameter {
|
---|
| 72 | get { return (ValueParameter<IDoubleValueManipulator>)Parameters[DoubleValueManipulatorParameterName]; }
|
---|
| 73 | }
|
---|
[4516] | 74 | #endregion
|
---|
| 75 |
|
---|
| 76 | #region Properties
|
---|
[5337] | 77 | public IAlgorithm Algorithm {
|
---|
[5313] | 78 | get { return CreateAlgorithm(AlgorithmType.Value, ProblemType.Value); }
|
---|
| 79 | }
|
---|
[5337] | 80 | public ConstrainedTypeValue<IAlgorithm> AlgorithmType {
|
---|
[5110] | 81 | get { return AlgorithmTypeParameter.Value; }
|
---|
| 82 | set { AlgorithmTypeParameter.Value = value; }
|
---|
[4516] | 83 | }
|
---|
[5337] | 84 | public ConstrainedTypeValue<IProblem> ProblemType {
|
---|
[5110] | 85 | get { return ProblemTypeParameter.Value; }
|
---|
| 86 | set { ProblemTypeParameter.Value = value; }
|
---|
| 87 | }
|
---|
[5337] | 88 | public ConstrainedItemList<IProblem> Problems {
|
---|
[4830] | 89 | get { return ProblemsParameter.Value; }
|
---|
| 90 | set { ProblemsParameter.Value = value; }
|
---|
[4516] | 91 | }
|
---|
[5144] | 92 | public ParameterConfigurationTree ParameterConfigurationTree {
|
---|
| 93 | get { return ParameterConfigurationTreeParameter.Value; }
|
---|
| 94 | set { ParameterConfigurationTreeParameter.Value = value; }
|
---|
[4516] | 95 | }
|
---|
[5110] | 96 | public IntValue Repetitions {
|
---|
| 97 | get { return RepetitionsParameter.Value; }
|
---|
| 98 | set { RepetitionsParameter.Value = value; }
|
---|
| 99 | }
|
---|
[5184] | 100 | private BestParameterConfigurationAnalyzer BestParameterConfigurationAnalyzer {
|
---|
| 101 | get { return Operators.OfType<BestParameterConfigurationAnalyzer>().FirstOrDefault(); }
|
---|
| 102 | }
|
---|
[5293] | 103 | private ReferenceQualityAnalyzer ReferenceQualityAnalyzer {
|
---|
| 104 | get { return Operators.OfType<ReferenceQualityAnalyzer>().FirstOrDefault(); }
|
---|
[5281] | 105 | }
|
---|
[5359] | 106 | private SolutionCacheAnalyzer RunsAnalyzer {
|
---|
| 107 | get { return Operators.OfType<SolutionCacheAnalyzer>().FirstOrDefault(); }
|
---|
[5303] | 108 | }
|
---|
[5522] | 109 | private PMOPopulationDiversityAnalyzer PMOPopulationDiversityAnalyzer {
|
---|
| 110 | get { return Operators.OfType<PMOPopulationDiversityAnalyzer>().FirstOrDefault(); }
|
---|
[5576] | 111 | }
|
---|
| 112 | private PMOProblemQualitiesAnalyzer PMOProblemQualitiesAnalyzer {
|
---|
| 113 | get { return Operators.OfType<PMOProblemQualitiesAnalyzer>().FirstOrDefault(); }
|
---|
| 114 | }
|
---|
| 115 | private PMOBestSolutionHistoryAnalyzer PMOBestSolutionHistoryAnalyzer {
|
---|
| 116 | get { return Operators.OfType<PMOBestSolutionHistoryAnalyzer>().FirstOrDefault(); }
|
---|
| 117 | }
|
---|
[4516] | 118 | #endregion
|
---|
| 119 |
|
---|
[5303] | 120 | public MetaOptimizationProblem()
|
---|
| 121 | : base() {
|
---|
[5337] | 122 | Parameters.Add(new ValueParameter<ConstrainedTypeValue<IAlgorithm>>(AlgorithmTypeParameterName, "The algorithm which's parameters should be optimized.", new ConstrainedTypeValue<IAlgorithm>(typeof(GeneticAlgorithm))));
|
---|
| 123 | Parameters.Add(new ValueParameter<ConstrainedTypeValue<IProblem>>(ProblemTypeParameterName, "The problem type.", new ConstrainedTypeValue<IProblem>()));
|
---|
| 124 | Parameters.Add(new ValueParameter<ConstrainedItemList<IProblem>>(ProblemsParameterName, "The problems that should be evaluated.", new ConstrainedItemList<IProblem>()));
|
---|
[5184] | 125 | Parameters.Add(new ValueParameter<ParameterConfigurationTree>(ParameterConfigurationTreeParameterName, "Tree of algorithm parameters that should be optimized."));
|
---|
[5110] | 126 | Parameters.Add(new ValueParameter<IntValue>(RepetitionsParameterName, "The number of evaluations for each problem.", new IntValue(3)));
|
---|
| 127 |
|
---|
[5303] | 128 | var validIntManipulators = new ItemSet<IIntValueManipulator>(ApplicationManager.Manager.GetInstances<IIntValueManipulator>());
|
---|
[5111] | 129 | var validDoubleManipulators = new ItemSet<IDoubleValueManipulator>(ApplicationManager.Manager.GetInstances<IDoubleValueManipulator>());
|
---|
[5277] | 130 | var validIntCrossovers = new ItemSet<IIntValueCrossover>(ApplicationManager.Manager.GetInstances<IIntValueCrossover>());
|
---|
| 131 | var validDoubleCrossovers = new ItemSet<IDoubleValueCrossover>(ApplicationManager.Manager.GetInstances<IDoubleValueCrossover>());
|
---|
[5293] | 132 | Parameters.Add(new ConstrainedValueParameter<IIntValueManipulator>(IntValueManipulatorParameterName, "", validIntManipulators, validIntManipulators.Where(x => x.GetType() == typeof(NormalIntValueManipulator)).SingleOrDefault()));
|
---|
| 133 | Parameters.Add(new ConstrainedValueParameter<IDoubleValueManipulator>(DoubleValueManipulatorParameterName, "", validDoubleManipulators, validDoubleManipulators.Where(x => x.GetType() == typeof(NormalDoubleValueManipulator)).SingleOrDefault()));
|
---|
| 134 | Parameters.Add(new ConstrainedValueParameter<IIntValueCrossover>(IntValueCrossoverParameterName, "", validIntCrossovers, validIntCrossovers.Where(x => x.GetType() == typeof(NormalIntValueCrossover)).SingleOrDefault()));
|
---|
| 135 | Parameters.Add(new ConstrainedValueParameter<IDoubleValueCrossover>(DoubleValueCrossoverParameterName, "", validDoubleCrossovers, validDoubleCrossovers.Where(x => x.GetType() == typeof(NormalDoubleValueCrossover)).SingleOrDefault()));
|
---|
[5111] | 136 |
|
---|
[4830] | 137 | Maximization = new BoolValue(false);
|
---|
| 138 | SolutionCreator = new RandomParameterConfigurationCreator();
|
---|
[5111] | 139 | Evaluator = new ParameterConfigurationEvaluator();
|
---|
[4516] | 140 |
|
---|
[4830] | 141 | InitializeOperators();
|
---|
| 142 | RegisterParameterEvents();
|
---|
[5184] | 143 | ParameterizeAnalyzer();
|
---|
[4516] | 144 | ParameterizeSolutionCreator();
|
---|
| 145 | ParameterizeEvaluator();
|
---|
[4830] | 146 | ParameterizeOperators();
|
---|
[5110] | 147 |
|
---|
[5337] | 148 | AlgorithmTypeParameter_ValueChanged(this, EventArgs.Empty);
|
---|
[4516] | 149 | }
|
---|
| 150 |
|
---|
[4830] | 151 | [StorableConstructor]
|
---|
| 152 | private MetaOptimizationProblem(bool deserializing) : base(deserializing) { }
|
---|
[5303] | 153 | private MetaOptimizationProblem(MetaOptimizationProblem original, Cloner cloner)
|
---|
| 154 | : base(original, cloner) {
|
---|
[4830] | 155 | this.RegisterParameterEvents();
|
---|
[4516] | 156 | }
|
---|
[4830] | 157 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 158 | return new MetaOptimizationProblem(this, cloner);
|
---|
| 159 | }
|
---|
[4516] | 160 |
|
---|
| 161 | #region Helpers
|
---|
| 162 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 163 | private void AfterDeserializationHook() {
|
---|
[4830] | 164 | RegisterParameterEvents();
|
---|
[4516] | 165 | }
|
---|
[4830] | 166 | private void RegisterParameterEvents() {
|
---|
[4516] | 167 | SolutionCreatorParameter.ValueChanged += new EventHandler(SolutionCreatorParameter_ValueChanged);
|
---|
| 168 | EvaluatorParameter.ValueChanged += new EventHandler(EvaluatorParameter_ValueChanged);
|
---|
| 169 | Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
[5110] | 170 | AlgorithmTypeParameter.ValueChanged += new EventHandler(AlgorithmTypeParameter_ValueChanged);
|
---|
[5313] | 171 | AlgorithmType.ValueChanged += new EventHandler(AlgorithmType_ValueChanged);
|
---|
[5110] | 172 | ProblemTypeParameter.ValueChanged += new EventHandler(ProblemTypeParameter_ValueChanged);
|
---|
[5313] | 173 | ProblemType.ValueChanged += new EventHandler(ProblemType_ValueChanged);
|
---|
[4516] | 174 | }
|
---|
[5303] | 175 |
|
---|
[4516] | 176 | private void InitializeOperators() {
|
---|
[4830] | 177 | Operators.AddRange(ApplicationManager.Manager.GetInstances<IParameterConfigurationOperator>().Cast<IOperator>());
|
---|
| 178 | Operators.Add(new BestParameterConfigurationAnalyzer());
|
---|
[5293] | 179 | Operators.Add(new ReferenceQualityAnalyzer());
|
---|
[5359] | 180 | Operators.Add(new SolutionCacheAnalyzer());
|
---|
[5522] | 181 | Operators.Add(new PMOPopulationDiversityAnalyzer());
|
---|
[5576] | 182 | Operators.Add(new PMOProblemQualitiesAnalyzer());
|
---|
| 183 | Operators.Add(new PMOBestSolutionHistoryAnalyzer());
|
---|
[4516] | 184 | }
|
---|
| 185 | private void ParameterizeSolutionCreator() {
|
---|
| 186 | }
|
---|
| 187 | private void ParameterizeEvaluator() {
|
---|
[5111] | 188 | ((ParameterConfigurationEvaluator)Evaluator).ParameterConfigurationParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
[4516] | 189 | }
|
---|
| 190 | private void ParameterizeAnalyzer() {
|
---|
[5184] | 191 | if (BestParameterConfigurationAnalyzer != null) {
|
---|
| 192 | BestParameterConfigurationAnalyzer.ParameterConfigurationParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
| 193 | }
|
---|
[5293] | 194 | if (ReferenceQualityAnalyzer != null) {
|
---|
| 195 | ReferenceQualityAnalyzer.ParameterConfigurationParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
[5281] | 196 | }
|
---|
[5303] | 197 | if (RunsAnalyzer != null) {
|
---|
| 198 | RunsAnalyzer.ParameterConfigurationParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
[5522] | 199 | }
|
---|
| 200 | if (PMOPopulationDiversityAnalyzer != null) {
|
---|
| 201 | PMOPopulationDiversityAnalyzer.SolutionParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
| 202 | PMOPopulationDiversityAnalyzer.StoreHistoryParameter.Value.Value = true;
|
---|
[5303] | 203 | }
|
---|
[5576] | 204 | if (PMOProblemQualitiesAnalyzer != null) {
|
---|
| 205 | PMOProblemQualitiesAnalyzer.ParameterConfigurationParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
| 206 | }
|
---|
| 207 | if (PMOBestSolutionHistoryAnalyzer != null) {
|
---|
| 208 | PMOBestSolutionHistoryAnalyzer.ParameterConfigurationParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
| 209 | }
|
---|
[4516] | 210 | }
|
---|
| 211 | private void ParameterizeOperators() {
|
---|
[5184] | 212 | foreach (IParameterConfigurationCrossover op in Operators.OfType<IParameterConfigurationCrossover>()) {
|
---|
| 213 | op.ParentsParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
| 214 | op.ChildParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
| 215 | }
|
---|
| 216 | foreach (IParameterConfigurationManipulator op in Operators.OfType<IParameterConfigurationManipulator>()) {
|
---|
| 217 | op.ParameterConfigurationTreeParameter.ActualName = ((RandomParameterConfigurationCreator)SolutionCreator).ParameterConfigurationParameter.ActualName;
|
---|
| 218 | }
|
---|
[4516] | 219 | }
|
---|
| 220 |
|
---|
| 221 | #endregion
|
---|
| 222 |
|
---|
| 223 | #region Events
|
---|
| 224 |
|
---|
| 225 | private void SolutionCreatorParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 226 | ParameterizeSolutionCreator();
|
---|
| 227 | ParameterizeEvaluator();
|
---|
| 228 | ParameterizeAnalyzer();
|
---|
| 229 | ParameterizeOperators();
|
---|
| 230 | OnSolutionCreatorChanged();
|
---|
| 231 | }
|
---|
| 232 | private void EvaluatorParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 233 | Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
| 234 | ParameterizeEvaluator();
|
---|
| 235 | ParameterizeAnalyzer();
|
---|
| 236 | OnEvaluatorChanged();
|
---|
| 237 | }
|
---|
| 238 | private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 239 | ParameterizeAnalyzer();
|
---|
| 240 | }
|
---|
[5313] | 241 | private void AlgorithmTypeParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 242 | AlgorithmType_ValueChanged(sender, e);
|
---|
[4516] | 243 | }
|
---|
[5313] | 244 |
|
---|
| 245 | private void AlgorithmType_ValueChanged(object sender, EventArgs e) {
|
---|
[5337] | 246 | IAlgorithm instance = (IAlgorithm)Activator.CreateInstance(AlgorithmType.Value);
|
---|
| 247 | this.ProblemType.ValidTypes = ApplicationManager.Manager.GetTypes(instance.ProblemType, true).ToList();
|
---|
[5340] | 248 | this.ProblemType.Value = this.ProblemType.ValidTypes.Where(t => t != typeof(MetaOptimizationProblem)).FirstOrDefault();
|
---|
| 249 | if (ProblemType.Value != null) {
|
---|
| 250 | ParameterConfigurationTreeParameter.ActualValue = new ParameterConfigurationTree(CreateAlgorithm(AlgorithmType.Value, ProblemType.Value));
|
---|
| 251 | } else {
|
---|
| 252 | ParameterConfigurationTreeParameter.ActualValue = null;
|
---|
| 253 | }
|
---|
[4516] | 254 | }
|
---|
[5313] | 255 |
|
---|
| 256 | private void ProblemTypeParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 257 | ProblemType_ValueChanged(sender, e);
|
---|
| 258 | }
|
---|
| 259 |
|
---|
| 260 | private void ProblemType_ValueChanged(object sender, EventArgs e) {
|
---|
| 261 | Problems.Clear();
|
---|
| 262 | Problems.Type = ProblemType.Value;
|
---|
| 263 | ParameterConfigurationTreeParameter.ActualValue = new ParameterConfigurationTree(CreateAlgorithm(AlgorithmType.Value, ProblemType.Value));
|
---|
| 264 | }
|
---|
[4516] | 265 | #endregion
|
---|
[5313] | 266 |
|
---|
[5337] | 267 | private IAlgorithm CreateAlgorithm(Type algorithmType, Type problemType) {
|
---|
| 268 | IAlgorithm algorithm = (IAlgorithm)Activator.CreateInstance(algorithmType);
|
---|
[5313] | 269 | algorithm.Problem = (IProblem)Activator.CreateInstance(problemType);
|
---|
| 270 | return algorithm;
|
---|
| 271 | }
|
---|
| 272 |
|
---|
[5337] | 273 | public void ImportAlgorithm(IAlgorithm algorithm) {
|
---|
[5313] | 274 | AlgorithmType.Value = algorithm.GetType();
|
---|
[5337] | 275 | if (algorithm.Problem != null) ProblemType.Value = algorithm.Problem.GetType();
|
---|
[5313] | 276 | ParameterConfigurationTreeParameter.ActualValue = new ParameterConfigurationTree(algorithm);
|
---|
[5337] | 277 | if (algorithm.Problem != null) Problems.Add((IProblem)algorithm.Problem);
|
---|
[5313] | 278 | }
|
---|
[4516] | 279 | }
|
---|
| 280 | }
|
---|