Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/IParameterConfiguration.cs @ 5009

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

#1215 worked on metaoptimization

File size: 511 bytes
Line 
1using System;
2using HeuristicLab.Core;
3using System.Collections.Generic;
4using HeuristicLab.Data;
5using HeuristicLab.Common;
6
7namespace HeuristicLab.Problems.MetaOptimization {
8  public interface IParameterConfiguration : IOptimizable, INamedItem {
9    string ParameterName { get; set; }
10    Type ParameterDataType { get; }
11    ICheckedValueConfigurationCollection ValueConfigurations { get; }
12    IItemSet<IItem> ValidValues { get; }
13
14    void Parameterize(IValueParameter parameter);
15  }
16}
Note: See TracBrowser for help on using the repository browser.