Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/15/15 11:08:52 (9 years ago)
Author:
pfleck
Message:

#2027

  • Removed ISingleValueTerminator and used ThresholdTerminator for the View instead.
  • Added missing description in SingleObjectiveQualityTerminator.
  • Added ITerminationBasedOperator which contains the terminate-flag.
File:
1 edited

Legend:

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

    r12436 r12444  
    3030  [Item("ThresholdTerminator", "Base class for all termination criteria which specifies some threshold.")]
    3131  [StorableClass]
    32   public abstract class ThresholdTerminator<T> : Terminator, ISingleValueTerminator where T : class, IItem, IStringConvertibleValue, new() {
    33     IParameter ISingleValueTerminator.SingleValueParameter {
    34       get { return ThresholdParameter; }
    35     }
     32  public abstract class ThresholdTerminator<T> : Terminator where T : class, IItem, IStringConvertibleValue, new() {
    3633    [Storable]
    3734    private IFixedValueParameter<T> thresholdParameter;
Note: See TracChangeset for help on using the changeset viewer.