Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Optimization/3.3/Termination/ThresholdTerminator.cs @ 17296

Last change on this file since 17296 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 3.5 KB
RevLine 
[12367]1#region License Information
2/* HeuristicLab
[17180]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[12367]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
[12408]22using System;
[12367]23using HeuristicLab.Common;
24using HeuristicLab.Core;
[12408]25using HeuristicLab.Data;
[12367]26using HeuristicLab.Parameters;
[16565]27using HEAL.Attic;
[12367]28
[12529]29namespace HeuristicLab.Optimization {
[12402]30  [Item("ThresholdTerminator", "Base class for all termination criteria which specifies some threshold.")]
[16565]31  [StorableType("E5D99104-54B2-471D-B27A-07CC737804A6")]
[12444]32  public abstract class ThresholdTerminator<T> : Terminator where T : class, IItem, IStringConvertibleValue, new() {
[12411]33    [Storable]
34    private IFixedValueParameter<T> thresholdParameter;
[12405]35    public IFixedValueParameter<T> ThresholdParameter {
[12411]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      }
[12367]47    }
48
[12405]49    public T Threshold {
50      get { return ThresholdParameter.Value; }
51    }
52
[12367]53    [StorableConstructor]
[16565]54    protected ThresholdTerminator(StorableConstructorFlag _) : base(_) { }
[12367]55    [StorableHook(HookType.AfterDeserialization)]
56    private void AfterDeserialization() {
57      Initialize();
58    }
[12402]59    protected ThresholdTerminator(ThresholdTerminator<T> original, Cloner cloner)
[12367]60      : base(original, cloner) {
[12411]61      thresholdParameter = cloner.Clone(original.thresholdParameter);
[12367]62      Initialize();
63    }
[12408]64    protected ThresholdTerminator()
65      : this(new T()) { }
66    protected ThresholdTerminator(T threshold)
[12367]67      : base() {
[12408]68      if (threshold == null) throw new ArgumentNullException("threshold");
[12411]69      thresholdParameter = new FixedValueParameter<T>("Threshold", "The limit of the termiation criterion.", threshold);
70      Parameters.Add(thresholdParameter);
[12367]71      Initialize();
72    }
73
74    private void Initialize() {
[12411]75      RegisterThresholdParameterEvents();
[12367]76    }
[12436]77    private void RegisterThresholdParameterEvents() {
78      Threshold.ValueChanged += new EventHandler(Threshold_ValueChanged);
79    }
80    private void OnThresholdParameterChanged() {
81      RegisterThresholdParameterEvents();
82    }
[12367]83
[12408]84    private void Threshold_ValueChanged(object sender, EventArgs e) {
85      OnThresholdChanged();
86    }
87    protected virtual void OnThresholdChanged() {
88      OnToStringChanged();
89    }
90
[12367]91    public override string ToString() {
92      if (ThresholdParameter.Value == null) return Name;
93      else return Name + ": " + ThresholdParameter.Value;
94    }
95  }
96}
Note: See TracBrowser for help on using the repository browser.