[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")]
|
---|
[17695] | 32 | public abstract class MultiObjectiveHeuristicOptimizationProblem<T> : HeuristicOptimizationProblem<T>, IMultiObjectiveHeuristicOptimizationProblem
|
---|
| 33 | where T : class, IMultiObjectiveEvaluator {
|
---|
[5578] | 34 | private const string MaximizationParameterName = "Maximization";
|
---|
| 35 |
|
---|
| 36 | [StorableConstructor]
|
---|
[16723] | 37 | protected MultiObjectiveHeuristicOptimizationProblem(StorableConstructorFlag _) : base(_) { }
|
---|
[17695] | 38 | protected MultiObjectiveHeuristicOptimizationProblem(MultiObjectiveHeuristicOptimizationProblem<T> original, Cloner cloner)
|
---|
[17317] | 39 | : base(original, cloner) {
|
---|
| 40 | RegisterEventHandlers();
|
---|
| 41 | }
|
---|
[5578] | 42 | protected MultiObjectiveHeuristicOptimizationProblem()
|
---|
| 43 | : base() {
|
---|
| 44 | Parameters.Add(new ValueParameter<BoolArray>(MaximizationParameterName, "Determines for each objective whether it should be maximized or minimized."));
|
---|
[17317] | 45 |
|
---|
| 46 | RegisterEventHandlers();
|
---|
[5578] | 47 | }
|
---|
| 48 |
|
---|
[17695] | 49 | protected MultiObjectiveHeuristicOptimizationProblem(T evaluator)
|
---|
| 50 | : base(evaluator) {
|
---|
[5618] | 51 | Parameters.Add(new ValueParameter<BoolArray>(MaximizationParameterName, "Determines for each objective whether it should be maximized or minimized."));
|
---|
[17317] | 52 |
|
---|
| 53 | RegisterEventHandlers();
|
---|
[5618] | 54 | }
|
---|
| 55 |
|
---|
[17317] | 56 | private void RegisterEventHandlers() {
|
---|
| 57 | MaximizationParameter.ValueChanged += MaximizationParameterOnValueChanged;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | private void MaximizationParameterOnValueChanged(object sender, EventArgs e) {
|
---|
| 61 | OnMaximizationChanged();
|
---|
| 62 | }
|
---|
| 63 |
|
---|
[5578] | 64 | public ValueParameter<BoolArray> MaximizationParameter {
|
---|
| 65 | get { return (ValueParameter<BoolArray>)Parameters[MaximizationParameterName]; }
|
---|
| 66 | }
|
---|
| 67 | IParameter IMultiObjectiveHeuristicOptimizationProblem.MaximizationParameter {
|
---|
| 68 | get { return MaximizationParameter; }
|
---|
| 69 | }
|
---|
| 70 | public BoolArray Maximization {
|
---|
| 71 | get { return MaximizationParameter.Value; }
|
---|
| 72 | protected set { MaximizationParameter.Value = value; }
|
---|
| 73 | }
|
---|
| 74 |
|
---|
| 75 | IMultiObjectiveEvaluator IMultiObjectiveHeuristicOptimizationProblem.Evaluator {
|
---|
| 76 | get { return Evaluator; }
|
---|
| 77 | }
|
---|
[17317] | 78 |
|
---|
| 79 | public event EventHandler MaximizationChanged;
|
---|
| 80 | protected void OnMaximizationChanged() {
|
---|
| 81 | MaximizationChanged?.Invoke(this, EventArgs.Empty);
|
---|
| 82 | }
|
---|
[5578] | 83 | }
|
---|
| 84 | }
|
---|