Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GaussianProcessEvolution/HeuristicLab.Problems.GaussianProcessTuning/Parameters.cs @ 8753

Last change on this file since 8753 was 8753, checked in by gkronber, 12 years ago

#1967 initial import of Gaussian process evolution plugin

File size: 595 bytes
Line 
1
2using System;
3
4namespace HeuristicLab.Problems.GaussianProcessTuning {
5  public class Parameters {
6    public int PopulationSize { get; set; }
7    public int Generations { get; set; }
8    public int MaxTreeLength { get; set; }
9    public int MaxTreeDepth { get; set; }
10    public double MutationRate { get; set; }
11    public double MaxSelectionPressure { get; set; }
12
13    public Parameters() {
14      PopulationSize = 100;
15      Generations = 10;
16      MaxTreeLength = 20;
17      MaxTreeDepth = 6;
18      MutationRate = 0.15;
19      MaxSelectionPressure = 100;
20    }
21  }
22}
Note: See TracBrowser for help on using the repository browser.