Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/28/15 14:22:03 (10 years ago)
Author:
pfleck
Message:

#2027

  • Added ValueChanged-events to Terminators.
  • Fixed wiring bug of quality-based Terminator.
Location:
branches/TerminationCriteria/HeuristicLab.Termination/3.3/Views
Files:
2 edited

Legend:

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

    r12405 r12408  
    2222using System;
    2323using HeuristicLab.Core;
     24using HeuristicLab.Data;
    2425
    2526namespace HeuristicLab.Termination.Views {
    26   partial class ThresholdTerminatorView<T> where T : class, IItem, IComparable, new() {
     27  partial class ThresholdTerminatorView<T> where T : class, IItem, IComparable, IStringConvertibleValue, new() {
    2728    /// <summary>
    2829    /// Required designer variable.
  • branches/TerminationCriteria/HeuristicLab.Termination/3.3/Views/ThresholdTerminatorView.cs

    r12405 r12408  
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Core.Views;
     25using HeuristicLab.Data;
    2526using HeuristicLab.MainForm;
    2627
     
    2930  [View("ThresholdTerminator View")]
    3031  [Content(typeof(ThresholdTerminator<>), true)]
    31   public partial class ThresholdTerminatorView<T> : ItemView where T : class, IItem, IComparable, new() {
     32  public partial class ThresholdTerminatorView<T> : ItemView where T : class, IItem, IComparable, IStringConvertibleValue, new() {
    3233
    3334    public new ThresholdTerminator<T> Content {
Note: See TracChangeset for help on using the changeset viewer.