Free cookie consent management tool by TermsFeed Policy Generator

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

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

initial prototype for Meta Optimization Problem (#1215)

File size: 411 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6
7namespace HeuristicLab.Problems.MetaOptimization {
8  public interface IParameterConfiguration : INamedItem {
9    bool Optimize { get; set; }
10    IParameter Parameter { get; set; }
11    string Category { get; set; }
12
13    IParameter GetParameterWithRandomValue(IRandom random);
14  }
15}
Note: See TracBrowser for help on using the repository browser.