Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/26/15 16:15:54 (9 years ago)
Author:
pfleck
Message:

#2027 Renamed TerminationCriterion to Terminator.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/TerminationCriteria/HeuristicLab.Termination/3.3/ThresholdTerminator.cs

    r12401 r12402  
    2727
    2828namespace HeuristicLab.Termination {
    29   [Item("ThresholdTerminationCriterion", "Base class for all termination criteria which specifies some threshold.")]
     29  [Item("ThresholdTerminator", "Base class for all termination criteria which specifies some threshold.")]
    3030  [StorableClass]
    31   public abstract class ThresholdTerminationCriterion<T> : TerminationCriterion where T : class, IItem {
     31  public abstract class ThresholdTerminator<T> : Terminator where T : class, IItem {
    3232    public IValueLookupParameter<T> ThresholdParameter {
    3333      get { return (IValueLookupParameter<T>)Parameters["Threshold"]; }
     
    3535
    3636    [StorableConstructor]
    37     protected ThresholdTerminationCriterion(bool deserializing) : base(deserializing) { }
     37    protected ThresholdTerminator(bool deserializing) : base(deserializing) { }
    3838    [StorableHook(HookType.AfterDeserialization)]
    3939    private void AfterDeserialization() {
    4040      Initialize();
    4141    }
    42     protected ThresholdTerminationCriterion(ThresholdTerminationCriterion<T> original, Cloner cloner)
     42    protected ThresholdTerminator(ThresholdTerminator<T> original, Cloner cloner)
    4343      : base(original, cloner) {
    4444      Initialize();
    4545    }
    46     protected ThresholdTerminationCriterion()
     46    protected ThresholdTerminator()
    4747      : base() {
    4848      Parameters.Add(new ValueLookupParameter<T>("Threshold", "The limit of the termiation criterion."));
Note: See TracChangeset for help on using the changeset viewer.