Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 12436 was 12436, checked in by mkommend, 9 years ago

#2027: Improved code formatting for terminators.

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    IParameter ISingleValueTerminator.SingleValueParameter {
34      get { return ThresholdParameter; }
35    }
36    [Storable]
37    private IFixedValueParameter<T> thresholdParameter;
38    public IFixedValueParameter<T> ThresholdParameter {
39      get { return thresholdParameter; }
40      set {
41        if (value == null) throw new ArgumentNullException("Threshold parameter must not be null.");
42        if (value.Value == null) throw new ArgumentNullException("Threshold parameter value must not be null.");
43        if (thresholdParameter == value) return;
44
45        if (thresholdParameter != null) Parameters.Remove(thresholdParameter);
46        thresholdParameter = value;
47        Parameters.Add(thresholdParameter);
48        OnThresholdParameterChanged();
49      }
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    private void RegisterThresholdParameterEvents() {
81      Threshold.ValueChanged += new EventHandler(Threshold_ValueChanged);
82    }
83    private void OnThresholdParameterChanged() {
84      RegisterThresholdParameterEvents();
85    }
86
87    private void Threshold_ValueChanged(object sender, EventArgs e) {
88      OnThresholdChanged();
89    }
90    protected virtual void OnThresholdChanged() {
91      OnToStringChanged();
92    }
93
94    public override string ToString() {
95      if (ThresholdParameter.Value == null) return Name;
96      else return Name + ": " + ThresholdParameter.Value;
97    }
98  }
99}
Note: See TracBrowser for help on using the repository browser.