Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1215

  • added possibility to create all parameter combinations from a ParameterConfigurationTree and generate an experiment from them
File size: 846 bytes
Line 
1using System;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HeuristicLab.Data;
5using System.Collections.Generic;
6
7namespace HeuristicLab.Problems.MetaOptimization {
8  public interface IRange : IItem, IStringConvertibleValue {
9    object LowerBound { get; set; }
10    object UpperBound { get; set; }
11    object StepSize { get; set; }
12
13    event EventHandler LowerBoundChanged;
14    event EventHandler UpperBoundChanged;
15    event EventHandler StepSizeChanged;
16
17    IItem GetRandomValue(IRandom random);
18
19    IEnumerable<IItem> GetCombinations();
20  }
21
22  public interface IRange<T> : IRange, IItem where T : class {
23    new T LowerBound { get; set; }
24    new T UpperBound { get; set; }
25    new T StepSize { get; set; }
26    new T GetRandomValue(IRandom random);
27    new IEnumerable<T> GetCombinations();
28  }
29}
Note: See TracBrowser for help on using the repository browser.