Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1215 worked on metaoptimization

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