Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5328 was 5277, checked in by cneumuel, 14 years ago

#1215

  • implemented crossover and manipulator operators for int and double values
File size: 612 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    ICheckedValueConfigurationList ValueConfigurations { get; }
12    Type[] ValidTypes { get; }
13    int ActualValueConfigurationIndex { get; set; }
14
15    void Parameterize(IValueParameter parameter);
16    void UpdateActualValueIndexToItem(IValueConfiguration vc);
17  }
18}
Note: See TracBrowser for help on using the repository browser.