Changeset 8879
- Timestamp:
- 11/07/12 19:29:30 (12 years ago)
- Location:
- branches/HeuristicLab.Problems.GaussianProcessTuning
- Files:
-
- 8 added
- 3 deleted
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning.sln
r8873 r8879 2 2 Microsoft Visual Studio Solution File, Format Version 12.00 3 3 # Visual Studio 2012 4 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = " HeuristicLab.Problems.GaussianProcessTuning", "HeuristicLab.Problems.GaussianProcessTuning\HeuristicLab.Problems.GaussianProcessTuning.csproj", "{9A04599C-D608-4240-8DA6-D41F51C515A3}"4 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GaussianProcessTuning", "HeuristicLab.Problems.GaussianProcessTuning\GaussianProcessTuning.csproj", "{9A04599C-D608-4240-8DA6-D41F51C515A3}" 5 5 ProjectSection(ProjectDependencies) = postProject 6 6 {94C7714E-29D4-4D6D-B213-2C18D627AB75} = {94C7714E-29D4-4D6D-B213-2C18D627AB75} 7 7 EndProjectSection 8 8 EndProject 9 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = " HeuristicLab.Problems.GaussianProcessTuning.Tests", "HeuristicLab.Problems.GaussianProcessTuning.Tests\HeuristicLab.Problems.GaussianProcessTuning.Tests.csproj", "{98C8AD2B-B035-4863-A01E-B659465FF6B2}"9 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GaussianProcessTuning.Tests", "HeuristicLab.Problems.GaussianProcessTuning.Tests\GaussianProcessTuning.Tests.csproj", "{98C8AD2B-B035-4863-A01E-B659465FF6B2}" 10 10 ProjectSection(ProjectDependencies) = postProject 11 11 {94C7714E-29D4-4D6D-B213-2C18D627AB75} = {94C7714E-29D4-4D6D-B213-2C18D627AB75} … … 19 19 EndProjectSection 20 20 EndProject 21 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = " HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression-3.3", "HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression\HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression-3.3.csproj", "{94C7714E-29D4-4D6D-B213-2C18D627AB75}"21 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Instances.DataAnalysis.GaussianProcessRegression-3.3", "HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression\Instances.DataAnalysis.GaussianProcessRegression-3.3.csproj", "{94C7714E-29D4-4D6D-B213-2C18D627AB75}" 22 22 EndProject 23 23 Global -
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning/Plugin.cs
r8753 r8879 4 4 namespace HeuristicLab.Problems.GaussianProcessTuning { 5 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)] 6 [PluginFile("HeuristicLab.Problems.GaussianProcessTuning-1.0.dll", PluginFileType.Assembly)] 7 [PluginDependency("HeuristicLab.ALGLIB", "3.6.0")] 8 [PluginDependency("HeuristicLab.Algorithms.DataAnalysis", "3.4")] 9 [PluginDependency("HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm", "3.3")] 10 [PluginDependency("HeuristicLab.Collections", "3.3")] 11 [PluginDependency("HeuristicLab.Common", "3.3")] 12 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 13 [PluginDependency("HeuristicLab.Core", "3.3")] 14 [PluginDependency("HeuristicLab.Core.Views", "3.3")] 7 15 [PluginDependency("HeuristicLab.Data", "3.3")] 8 [PluginDependency("HeuristicLab.Core", "3.3")]9 [PluginDependency("HeuristicLab.Common", "3.3")]10 16 [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding", "3.4")] 17 [PluginDependency("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views", "3.4")] 18 [PluginDependency("HeuristicLab.MainForm", "3.3")] 19 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 20 [PluginDependency("HeuristicLab.Operators", "3.3")] 21 [PluginDependency("HeuristicLab.Optimization", "3.3")] 22 [PluginDependency("HeuristicLab.Optimization.Operators", "3.3")] 11 23 [PluginDependency("HeuristicLab.Parameters", "3.3")] 12 24 [PluginDependency("HeuristicLab.Persistence", "3.3")] 25 [PluginDependency("HeuristicLab.Problems.DataAnalysis", "3.4")] 26 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")] 27 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic.Regression", "3.4")] 28 [PluginDependency("HeuristicLab.Random", "3.3")] 29 [PluginDependency("HeuristicLab.Selection", "3.3")] 30 [PluginDependency("HeuristicLab.SequentialEngine", "3.3")] 13 31 public class HeuristicLabProblemsGaussianProcessTuningPlugin : PluginBase { 14 32 } -
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression/GaussianProcessSEIso1.cs
r8873 r8879 27 27 28 28 namespace HeuristicLab.Problems.Instances.DataAnalysis { 29 public class GaussianProcessSEIso 2dim: ArtificialRegressionDataDescriptor {29 public class GaussianProcessSEIso1 : ArtificialRegressionDataDescriptor { 30 30 31 31 public override string Name { 32 32 get { 33 return "Gaussian Process 2-dimensional SEiso";33 return "Gaussian Process SEiso 1"; 34 34 } 35 35 } -
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression/Plugin.cs.frame
r8873 r8879 25 25 [Plugin("HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression", "3.3.7.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression-3.3.dll", PluginFileType.Assembly)] 27 [PluginDependency("HeuristicLab.ALGLIB", "3.6.0")] 28 [PluginDependency("HeuristicLab.Algorithm.DataAnalysis", "3.4")] 29 [PluginDependency("HeuristicLab.Collections", "3.3")] 27 30 [PluginDependency("HeuristicLab.Common", "3.3")] 28 31 [PluginDependency("HeuristicLab.Core", "3.3")] 29 32 [PluginDependency("HeuristicLab.Data", "3.3")] 33 [PluginDependency("HeuristicLab.Persistence", "3.3")] 30 34 [PluginDependency("HeuristicLab.Problems.DataAnalysis", "3.4")] 35 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")] 31 36 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 37 [PluginDependency("HeuristicLab.Problems.Instances.DataAnalysis", "3.3")] 32 38 [PluginDependency("HeuristicLab.Random", "3.3")] 33 39 public class HeuristicLabProblemsInstancesDataAnalysisGaussianProcessRegressionPlugin : PluginBase { -
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.Instances.DataAnalysis.GaussianProcessRegression/VariousInstanceProvider.cs
r8873 r8879 40 40 public override IEnumerable<IDataDescriptor> GetDataDescriptors() { 41 41 List<IDataDescriptor> descriptorList = new List<IDataDescriptor>(); 42 descriptorList.Add(new GaussianProcessSEIso()); 43 descriptorList.Add(new GaussianProcessSEIso1()); 44 descriptorList.Add(new GaussianProcessSEIso2()); 45 descriptorList.Add(new GaussianProcessSEIso3()); 46 descriptorList.Add(new GaussianProcessSEIso4()); 47 descriptorList.Add(new GaussianProcessSEIso5()); 48 descriptorList.Add(new GaussianProcessSEIso6()); 42 49 descriptorList.Add(new GaussianProcessPolyTen()); 43 descriptorList.Add(new GaussianProcessSEIso());44 descriptorList.Add(new GaussianProcessSEIso2dim());45 50 descriptorList.Add(new GaussianProcessSEIsoDependentNoise()); 46 51 return descriptorList;
Note: See TracChangeset
for help on using the changeset viewer.