Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/01/15 16:47:32 (9 years ago)
Author:
pfleck
Message:

#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:
1 moved

Legend:

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

    r12410 r12411  
    2626
    2727  [View("ThresholdTerminator View")]
    28   [Content(typeof(IThresholdTerminator), true)]
    29   public partial class ThresholdTerminatorView : ItemView {
     28  [Content(typeof(ISingleValueTerminator), true)]
     29  public partial class SingleValueTerminatorView : ItemView {
    3030
    31     public new IThresholdTerminator Content {
    32       get { return (IThresholdTerminator)base.Content; }
     31    public new ISingleValueTerminator Content {
     32      get { return (ISingleValueTerminator)base.Content; }
    3333      set { base.Content = value; }
    3434    }
    3535
    36     public ThresholdTerminatorView() {
     36    public SingleValueTerminatorView() {
    3737      InitializeComponent();
    3838    }
Note: See TracChangeset for help on using the changeset viewer.