Changeset 12444 for branches/TerminationCriteria/HeuristicLab.Termination/3.3/ThresholdTerminator.cs
- Timestamp:
- 06/15/15 11:08:52 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/TerminationCriteria/HeuristicLab.Termination/3.3/ThresholdTerminator.cs
r12436 r12444 30 30 [Item("ThresholdTerminator", "Base class for all termination criteria which specifies some threshold.")] 31 31 [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() { 36 33 [Storable] 37 34 private IFixedValueParameter<T> thresholdParameter;
Note: See TracChangeset
for help on using the changeset viewer.