Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GeneticProgramming/IGPSolver.cs @ 12840

Last change on this file since 12840 was 11895, checked in by gkronber, 9 years ago

#2283: constant opt, expressioncompiler, autodiff, fixes in GP solvers

File size: 323 bytes
Line 
1using HeuristicLab.Algorithms.GrammaticalOptimization;
2
3namespace HeuristicLab.Algorithms.GeneticProgramming {
4  public interface IGPSolver : ISolver {
5    int PopulationSize { get; set; }
6    double MutationRate { get; set; }
7    int MaxSolutionSize { get; set; }
8    int MaxSolutionDepth { get; set; }
9  }
10}
Note: See TracBrowser for help on using the repository browser.