Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/Problems/MultiObjectiveHeuristicOptimizationProblem.cs @ 18086

Last change on this file since 18086 was 17695, checked in by abeham, 4 years ago

#2521:

  • Moving solution creator parameter from problems to algorithms (breaking wiring in some HeuristicOptimizationProblems)
  • Disallowing evaluator or encoding changes in encoding-specific base problems (to avoid confusion in derived problems whether this needs to be handled or not)
  • Added private set to ReferenceParameter property (serialization)
File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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
22using System;
23using HEAL.Attic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Parameters;
28
29namespace HeuristicLab.Optimization {
30  [Item("Multi-Objective Heuristic Optimization Problem", "A base class for multi-objective heuristic optimization problems.")]
31  [StorableType("C46643E3-7144-4884-A30A-5329BD80DC4E")]
32  public abstract class MultiObjectiveHeuristicOptimizationProblem<T> : HeuristicOptimizationProblem<T>, IMultiObjectiveHeuristicOptimizationProblem
33    where T : class, IMultiObjectiveEvaluator {
34    private const string MaximizationParameterName = "Maximization";
35
36    [StorableConstructor]
37    protected MultiObjectiveHeuristicOptimizationProblem(StorableConstructorFlag _) : base(_) { }
38    protected MultiObjectiveHeuristicOptimizationProblem(MultiObjectiveHeuristicOptimizationProblem<T> original, Cloner cloner)
39      : base(original, cloner) {
40      RegisterEventHandlers();
41    }
42    protected MultiObjectiveHeuristicOptimizationProblem()
43      : base() {
44      Parameters.Add(new ValueParameter<BoolArray>(MaximizationParameterName, "Determines for each objective whether it should be maximized or minimized."));
45
46      RegisterEventHandlers();
47    }
48
49    protected MultiObjectiveHeuristicOptimizationProblem(T evaluator)
50      : base(evaluator) {
51      Parameters.Add(new ValueParameter<BoolArray>(MaximizationParameterName, "Determines for each objective whether it should be maximized or minimized."));
52
53      RegisterEventHandlers();
54    }
55
56    private void RegisterEventHandlers() {
57      MaximizationParameter.ValueChanged += MaximizationParameterOnValueChanged;
58    }
59
60    private void MaximizationParameterOnValueChanged(object sender, EventArgs e) {
61      OnMaximizationChanged();
62    }
63
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    }
78
79    public event EventHandler MaximizationChanged;
80    protected void OnMaximizationChanged() {
81      MaximizationChanged?.Invoke(this, EventArgs.Empty);
82    }
83  }
84}
Note: See TracBrowser for help on using the repository browser.