[5578] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17226] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[5578] | 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 |
|
---|
[17317] | 22 | using System;
|
---|
| 23 | using HEAL.Attic;
|
---|
[5578] | 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 | using HeuristicLab.Parameters;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Optimization {
|
---|
| 30 | [Item("Multi-Objective Heuristic Optimization Problem", "A base class for multi-objective heuristic optimization problems.")]
|
---|
[16723] | 31 | [StorableType("C46643E3-7144-4884-A30A-5329BD80DC4E")]
|
---|
[5578] | 32 | public abstract class MultiObjectiveHeuristicOptimizationProblem<T, U> : HeuristicOptimizationProblem<T, U>, IMultiObjectiveHeuristicOptimizationProblem
|
---|
| 33 | where T : class, IMultiObjectiveEvaluator
|
---|
| 34 | where U : class, ISolutionCreator {
|
---|
| 35 | private const string MaximizationParameterName = "Maximization";
|
---|
| 36 |
|
---|
| 37 | [StorableConstructor]
|
---|
[16723] | 38 | protected MultiObjectiveHeuristicOptimizationProblem(StorableConstructorFlag _) : base(_) { }
|
---|
[17317] | 39 | protected MultiObjectiveHeuristicOptimizationProblem(MultiObjectiveHeuristicOptimizationProblem<T, U> original, Cloner cloner)
|
---|
| 40 | : base(original, cloner) {
|
---|
| 41 | RegisterEventHandlers();
|
---|
| 42 | }
|
---|
[5578] | 43 | protected MultiObjectiveHeuristicOptimizationProblem()
|
---|
| 44 | : base() {
|
---|
| 45 | Parameters.Add(new ValueParameter<BoolArray>(MaximizationParameterName, "Determines for each objective whether it should be maximized or minimized."));
|
---|
[17317] | 46 |
|
---|
| 47 | RegisterEventHandlers();
|
---|
[5578] | 48 | }
|
---|
| 49 |
|
---|
[5618] | 50 | protected MultiObjectiveHeuristicOptimizationProblem(T evaluator, U solutionCreator)
|
---|
| 51 | : base(evaluator, solutionCreator) {
|
---|
| 52 | Parameters.Add(new ValueParameter<BoolArray>(MaximizationParameterName, "Determines for each objective whether it should be maximized or minimized."));
|
---|
[17317] | 53 |
|
---|
| 54 | RegisterEventHandlers();
|
---|
[5618] | 55 | }
|
---|
| 56 |
|
---|
[17317] | 57 | private void RegisterEventHandlers() {
|
---|
| 58 | MaximizationParameter.ValueChanged += MaximizationParameterOnValueChanged;
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | private void MaximizationParameterOnValueChanged(object sender, EventArgs e) {
|
---|
| 62 | OnMaximizationChanged();
|
---|
| 63 | }
|
---|
| 64 |
|
---|
[5578] | 65 | public ValueParameter<BoolArray> MaximizationParameter {
|
---|
| 66 | get { return (ValueParameter<BoolArray>)Parameters[MaximizationParameterName]; }
|
---|
| 67 | }
|
---|
| 68 | IParameter IMultiObjectiveHeuristicOptimizationProblem.MaximizationParameter {
|
---|
| 69 | get { return MaximizationParameter; }
|
---|
| 70 | }
|
---|
| 71 | public BoolArray Maximization {
|
---|
| 72 | get { return MaximizationParameter.Value; }
|
---|
| 73 | protected set { MaximizationParameter.Value = value; }
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | IMultiObjectiveEvaluator IMultiObjectiveHeuristicOptimizationProblem.Evaluator {
|
---|
| 77 | get { return Evaluator; }
|
---|
| 78 | }
|
---|
[17317] | 79 |
|
---|
| 80 | public event EventHandler MaximizationChanged;
|
---|
| 81 | protected void OnMaximizationChanged() {
|
---|
| 82 | MaximizationChanged?.Invoke(this, EventArgs.Empty);
|
---|
| 83 | }
|
---|
[5578] | 84 | }
|
---|
| 85 | }
|
---|