Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/15 14:30:56 (9 years ago)
Author:
pfleck
Message:

#2027

  • Uses FixedValueParameters and added some properties.
  • Added the comparison-symbol in the string-representation of Terminators.
  • Renamed Terminator parameter to Termination to use a more neutral term.
  • Used Red-Flag as Termination-Icon.
File:
1 edited

Legend:

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

    r12402 r12405  
    2020#endregion
    2121
     22using System.Drawing;
    2223using HeuristicLab.Common;
    2324using HeuristicLab.Core;
     
    3132  [StorableClass]
    3233  public abstract class Terminator : InstrumentedOperator, ITerminator {
     34    public static new Image StaticItemImage {
     35      get { return HeuristicLab.Common.Resources.VSImageLibrary.FlagRed; }
     36    }
     37
    3338    public ILookupParameter<BoolValue> TerminateParameter {
    3439      get { return (ILookupParameter<BoolValue>)Parameters["Terminate"]; }
Note: See TracChangeset for help on using the changeset viewer.