Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/08/13 21:56:11 (12 years ago)
Author:
gkronber
Message:

#1967: worked on Gaussian Process evolution problem

Location:
branches/HeuristicLab.Problems.GaussianProcessTuning/GaussianProcessDemo
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GaussianProcessTuning/GaussianProcessDemo/Form1.cs

    r9124 r9212  
    2727
    2828      var sum = new CovarianceSum();
    29       sum.Terms.Add(new CovarianceSquaredExponentialIso());
    3029      sum.Terms.Add(new CovariancePeriodic());
    3130      sum.Terms.Add(new CovarianceNoise());
     
    5049
    5150    private void InitData() {
    52       int n = 100;
     51      int n = 20;
    5352      data = new List<List<double>>();
    5453      data.Add(ValueGenerator.GenerateSteps(0, 1, 1.0 / n).ToList());
  • branches/HeuristicLab.Problems.GaussianProcessTuning/GaussianProcessDemo/GaussianProcessDemo.csproj

    r9124 r9212  
    3131    <ErrorReport>prompt</ErrorReport>
    3232    <WarningLevel>4</WarningLevel>
     33  </PropertyGroup>
     34  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
     35    <DebugSymbols>true</DebugSymbols>
     36    <OutputPath>bin\x86\Debug\</OutputPath>
     37    <DefineConstants>DEBUG;TRACE</DefineConstants>
     38    <DebugType>full</DebugType>
     39    <PlatformTarget>x86</PlatformTarget>
     40    <ErrorReport>prompt</ErrorReport>
     41    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     42    <Prefer32Bit>true</Prefer32Bit>
     43  </PropertyGroup>
     44  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <Optimize>true</Optimize>
     48    <DebugType>pdbonly</DebugType>
     49    <PlatformTarget>x86</PlatformTarget>
     50    <ErrorReport>prompt</ErrorReport>
     51    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
     52    <Prefer32Bit>true</Prefer32Bit>
    3353  </PropertyGroup>
    3454  <ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.