Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Interfaces/IParameterConfigurationCrossover.cs @ 10331

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

#1215

  • enhanced combinations generator (now with batchruns!)
  • fixed ActualNames for metaopt-alg
  • added penalty for invalid solution-candidates (algs which throw exceptions)
  • migrated to .NET 4.0
File size: 387 bytes
Line 
1using HeuristicLab.Optimization;
2using HeuristicLab.Core;
3
4namespace HeuristicLab.Problems.MetaOptimization {
5  public interface IParameterConfigurationCrossover : ICrossover, IParameterConfigurationOperator {
6    ILookupParameter<ItemArray<ParameterConfigurationTree>> ParentsParameter { get; }
7    ILookupParameter<ParameterConfigurationTree> ChildParameter { get; }
8  }
9}
Note: See TracBrowser for help on using the repository browser.