Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/IParameterConfigurationManipulator.cs @ 5111

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

#1215

  • improved exchangeability of crossover and mutation operators for parameter values
File size: 420 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Optimization;
6using HeuristicLab.Core;
7
8namespace HeuristicLab.Problems.MetaOptimization {
9  public interface IParameterConfigurationManipulator : IParameterConfigurationOperator, IManipulator {
10    IValueLookupParameter<ParameterConfigurationTree> ParameterConfigurationTreeParameter { get; }
11  }
12}
Note: See TracBrowser for help on using the repository browser.