Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/IValueConfiguration.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: 440 bytes
Line 
1using System;
2using HeuristicLab.Core;
3using HeuristicLab.Data;
4using System.Collections.Generic;
5
6namespace HeuristicLab.Problems.MetaOptimization {
7  public interface IValueConfiguration : IOptimizable, IItem {
8    IItemCollection<IParameterConfiguration> ParameterConfigurations { get; }
9    IRange RangeConstraint { get; }
10    event EventHandler ValueChanged;
11   
12    void Parameterize(IParameterizedItem item);
13  }
14}
Note: See TracBrowser for help on using the repository browser.