Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/IRange.cs @ 4839

Last change on this file since 4839 was 4839, checked in by cneumuel, 13 years ago

#1215 worked on MetaOptimization

  • split configurations into ValueConfigurations and ParameterConfigurations
File size: 485 bytes
Line 
1using System;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HeuristicLab.Data;
5
6namespace HeuristicLab.Problems.MetaOptimization {
7  public interface IRange<T> : IItem where T : class, IItem, IStringConvertibleValue, IDeepCloneable {
8    T LowerBound { get; set; }
9    T UpperBound { get; set; }
10    T StepSize { get; set; }
11
12    event EventHandler LowerBoundChanged;
13    event EventHandler UpperBoundChanged;
14    event EventHandler StepSizeChanged;
15  }
16}
Note: See TracBrowser for help on using the repository browser.