Free cookie consent management tool by TermsFeed Policy Generator

source: branches/TerminationCriteria/HeuristicLab.Termination/3.3/ThresholdTerminator.cs @ 12411

Last change on this file since 12411 was 12411, checked in by pfleck, 9 years ago

#2027

  • Removed MaximumIterationsTerminator and MaximumEvaluatedSolutionsTermimator because they practically do the same.
  • Add the possibility for ThresholdTerminators to use a foreign parameter (e.g. MaximumSelectionPressure). This way the terminator can use parameters which are still relevant for the algorithm and still provide consistent management of the terminators.
  • Renamed IThresholdTerminator to ISingleValueTerminator.
File size: 3.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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 HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Termination {
30  [Item("ThresholdTerminator", "Base class for all termination criteria which specifies some threshold.")]
31  [StorableClass]
32  public abstract class ThresholdTerminator<T> : Terminator, ISingleValueTerminator where T : class, IItem, IStringConvertibleValue, new() {
33    [Storable]
34    private IFixedValueParameter<T> thresholdParameter;
35    public IFixedValueParameter<T> ThresholdParameter {
36      get { return thresholdParameter; }
37      set {
38        if (value == null) throw new ArgumentNullException("Threshold parameter must not be null.");
39        if (value.Value == null) throw new ArgumentNullException("Threshold parameter value must not be null.");
40        if (thresholdParameter == value) return;
41
42        if (thresholdParameter != null) Parameters.Remove(thresholdParameter);
43        thresholdParameter = value;
44        Parameters.Add(thresholdParameter);
45        OnThresholdParameterChanged();
46      }
47    }
48    IParameter ISingleValueTerminator.ThresholdParameter {
49      get { return ThresholdParameter; }
50    }
51
52    public T Threshold {
53      get { return ThresholdParameter.Value; }
54    }
55
56    [StorableConstructor]
57    protected ThresholdTerminator(bool deserializing) : base(deserializing) { }
58    [StorableHook(HookType.AfterDeserialization)]
59    private void AfterDeserialization() {
60      Initialize();
61    }
62    protected ThresholdTerminator(ThresholdTerminator<T> original, Cloner cloner)
63      : base(original, cloner) {
64      thresholdParameter = cloner.Clone(original.thresholdParameter);
65      Initialize();
66    }
67    protected ThresholdTerminator()
68      : this(new T()) { }
69    protected ThresholdTerminator(T threshold)
70      : base() {
71      if (threshold == null) throw new ArgumentNullException("threshold");
72      thresholdParameter = new FixedValueParameter<T>("Threshold", "The limit of the termiation criterion.", threshold);
73      Parameters.Add(thresholdParameter);
74      Initialize();
75    }
76
77    private void Initialize() {
78      RegisterThresholdParameterEvents();
79    }
80
81    private void Threshold_ValueChanged(object sender, EventArgs e) {
82      OnThresholdChanged();
83    }
84    protected virtual void OnThresholdChanged() {
85      OnToStringChanged();
86    }
87
88    private void OnThresholdParameterChanged() {
89      RegisterThresholdParameterEvents();
90    }
91
92    private void RegisterThresholdParameterEvents() {
93      Threshold.ValueChanged += new EventHandler(Threshold_ValueChanged);
94    }
95
96    public override string ToString() {
97      if (ThresholdParameter.Value == null) return Name;
98      else return Name + ": " + ThresholdParameter.Value;
99    }
100  }
101}
Note: See TracBrowser for help on using the repository browser.