Changeset 10792
- Timestamp:
- 04/25/14 00:35:59 (11 years ago)
- Location:
- branches/HeuristicLab.Problems.GaussianProcessTuning
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Algorithms.DataAnalysis.Experimental/HeuristicLab.Algorithms.DataAnalysis.Experimental.csproj
r10756 r10792 30 30 <DefineConstants>TRACE</DefineConstants> 31 31 <ErrorReport>prompt</ErrorReport> 32 <WarningLevel> 4</WarningLevel>32 <WarningLevel>1</WarningLevel> 33 33 <AllowUnsafeBlocks>true</AllowUnsafeBlocks> 34 34 </PropertyGroup> … … 38 38 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> 39 39 <DebugSymbols>true</DebugSymbols> 40 <OutputPath> bin\x86\Debug\</OutputPath>40 <OutputPath>..\..\..\trunk\sources\bin\</OutputPath> 41 41 <DefineConstants>DEBUG;TRACE</DefineConstants> 42 42 <DebugType>full</DebugType> … … 44 44 <ErrorReport>prompt</ErrorReport> 45 45 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 46 <AllowUnsafeBlocks>true</AllowUnsafeBlocks> 47 <Optimize>false</Optimize> 46 48 </PropertyGroup> 47 49 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> … … 53 55 <ErrorReport>prompt</ErrorReport> 54 56 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> 57 <AllowUnsafeBlocks>true</AllowUnsafeBlocks> 55 58 </PropertyGroup> 56 59 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> … … 130 133 </ItemGroup> 131 134 <ItemGroup> 135 <Compile Include="ToeplitzGaussianProcessModel.cs" /> 136 <Compile Include="ToeplitzGaussianProcessRegressionModelCreator.cs" /> 132 137 <Compile Include="EigenGaussianProcessModel.cs"> 133 138 <SubType>Code</SubType> … … 152 157 </ProjectReference> 153 158 </ItemGroup> 159 <ItemGroup> 160 <Content Include="toeplitz.dll"> 161 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 162 </Content> 163 </ItemGroup> 154 164 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 155 165 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning.Tests/GaussianProcessTuning.Tests.csproj
r9562 r10792 101 101 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath> 102 102 </Reference> 103 <Reference Include="HeuristicLab.Problems.Instances-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=x86"> 104 <SpecificVersion>False</SpecificVersion> 105 <HintPath>bin\x86\Release\HeuristicLab.Problems.Instances-3.3.dll</HintPath> 106 </Reference> 103 107 <Reference Include="HeuristicLab.Random-3.3"> 104 108 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath> -
branches/HeuristicLab.Problems.GaussianProcessTuning/HeuristicLab.Problems.GaussianProcessTuning.Tests/UnitTest.cs
r9562 r10792 35 35 double negLogLikelihood; 36 36 HeuristicLab.Algorithms.DataAnalysis.IGaussianProcessSolution solution; 37 interpreter.EvaluateGaussianProcessConfiguration(t, problemData, out negLogLikelihood, out solution);37 interpreter.EvaluateGaussianProcessConfiguration(t, problemData, 50, out negLogLikelihood, out solution); 38 38 Console.WriteLine(); 39 39 }
Note: See TracChangeset
for help on using the changeset viewer.