Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning/Plugin.cs @ 8755

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

#1967 initial import of Gaussian process evolution plugin

File size: 772 bytes
Line 
1
2using HeuristicLab.PluginInfrastructure;
3
4namespace HeuristicLab.Problems.GaussianProcessTuning {
5  [Plugin("HeuristicLab.Problems.GaussianProcessTuning", "Gaussian process configuration problem for genetic programming", "1.0.0")]
6  [PluginFile("HeuristicLab.Problems.GaussianProcessTuning-1.0.exe", PluginFileType.Assembly)]
7  [PluginDependency("HeuristicLab.Data", "3.3")]
8  [PluginDependency("HeuristicLab.Core", "3.3")]
9  [PluginDependency("HeuristicLab.Common", "3.3")]
10  [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding", "3.4")]
11  [PluginDependency("HeuristicLab.Parameters", "3.3")]
12  [PluginDependency("HeuristicLab.Persistence", "3.3")]
13  public class HeuristicLabProblemsGaussianProcessTuningPlugin : PluginBase {
14  }
15}
Note: See TracBrowser for help on using the repository browser.