Last change
on this file since 14035 was
11895,
checked in by gkronber, 10 years ago
|
#2283: constant opt, expressioncompiler, autodiff, fixes in GP solvers
|
File size:
323 bytes
|
Line | |
---|
1 | using HeuristicLab.Algorithms.GrammaticalOptimization;
|
---|
2 |
|
---|
3 | namespace 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.