Changeset 1806 for trunk/sources
- Timestamp:
- 05/14/09 15:18:03 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 21 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLab.SupportVectorMachines-3.2.csproj
r1793 r1806 13 13 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 14 14 <FileAlignment>512</FileAlignment> 15 <SignAssembly>true</SignAssembly> 16 <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile> 15 17 </PropertyGroup> 16 18 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> … … 18 20 <DebugType>full</DebugType> 19 21 <Optimize>false</Optimize> 20 <OutputPath>bin\ Debug\</OutputPath>22 <OutputPath>bin\x64\Debug\</OutputPath> 21 23 <DefineConstants>DEBUG;TRACE</DefineConstants> 22 24 <ErrorReport>prompt</ErrorReport> 23 25 <WarningLevel>4</WarningLevel> 26 <PlatformTarget>x64</PlatformTarget> 24 27 </PropertyGroup> 25 28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 30 33 <ErrorReport>prompt</ErrorReport> 31 34 <WarningLevel>4</WarningLevel> 35 </PropertyGroup> 36 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> 37 <DebugSymbols>true</DebugSymbols> 38 <OutputPath>bin\x64\Debug\</OutputPath> 39 <DefineConstants>DEBUG;TRACE</DefineConstants> 40 <DebugType>full</DebugType> 41 <PlatformTarget>x64</PlatformTarget> 42 <ErrorReport>prompt</ErrorReport> 43 </PropertyGroup> 44 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> 45 <OutputPath>bin\x64\Release\</OutputPath> 46 <DefineConstants>TRACE</DefineConstants> 47 <Optimize>true</Optimize> 48 <DebugType>pdbonly</DebugType> 49 <PlatformTarget>x64</PlatformTarget> 50 <ErrorReport>prompt</ErrorReport> 32 51 </PropertyGroup> 33 52 <ItemGroup> … … 46 65 </ItemGroup> 47 66 <ItemGroup> 67 <Compile Include="HeuristicLabSupportVectorMachinesPlugin.cs" /> 48 68 <Compile Include="Properties\AssemblyInfo.cs" /> 69 <Compile Include="SupportVectorCreator.cs" /> 70 <Compile Include="SupportVectorEvaluator.cs" /> 71 <Compile Include="SVMHelper.cs" /> 72 <Compile Include="SVM\Cache.cs" /> 73 <Compile Include="SVM\GaussianTransform.cs" /> 74 <Compile Include="SVM\IRangeTransform.cs" /> 75 <Compile Include="SVM\Model.cs" /> 76 <Compile Include="SVM\Node.cs" /> 77 <Compile Include="SVM\Parameter.cs" /> 78 <Compile Include="SVM\ParameterSelection.cs" /> 79 <Compile Include="SVM\PerformanceEvaluator.cs" /> 80 <Compile Include="SVM\PrecomputedKernel.cs" /> 81 <Compile Include="SVM\Prediction.cs" /> 82 <Compile Include="SVM\Problem.cs" /> 83 <Compile Include="SVM\RangeTransform.cs" /> 84 <Compile Include="SVM\Scaling.cs" /> 85 <Compile Include="SVM\Solver.cs" /> 86 <Compile Include="SVM\SupportClass.cs" /> 87 <Compile Include="SVM\Training.cs" /> 49 88 </ItemGroup> 50 89 <ItemGroup> 90 <None Include="HeuristicLab.snk" /> 51 91 <None Include="Properties\AssemblyInfo.frame" /> 92 </ItemGroup> 93 <ItemGroup> 94 <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj"> 95 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project> 96 <Name>HeuristicLab.Core-3.2</Name> 97 </ProjectReference> 98 <ProjectReference Include="..\..\HeuristicLab.DataAnalysis\3.2\HeuristicLab.DataAnalysis-3.2.csproj"> 99 <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project> 100 <Name>HeuristicLab.DataAnalysis-3.2</Name> 101 </ProjectReference> 102 <ProjectReference Include="..\..\HeuristicLab.Data\3.2\HeuristicLab.Data-3.2.csproj"> 103 <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project> 104 <Name>HeuristicLab.Data-3.2</Name> 105 </ProjectReference> 106 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> 107 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> 108 <Name>HeuristicLab.PluginInfrastructure</Name> 109 </ProjectReference> 110 </ItemGroup> 111 <ItemGroup> 112 <Content Include="SVM\license.txt" /> 52 113 </ItemGroup> 53 114 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
trunk/sources/HeuristicLab.sln
r1795 r1806 199 199 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Selection.Uncertainty", "HeuristicLab.Selection.Uncertainty\3.2\HeuristicLab.Selection.Uncertainty.csproj", "{4FB4120E-CE65-473F-B2F0-FC2E82FF3761}" 200 200 EndProject 201 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SupportVectorMachines-3.2", "HeuristicLab.SupportVectorMachines\3.2\HeuristicLab.SupportVectorMachines-3.2.csproj", "{7E18E25A-BCEB-467A-BACC-ABCA73F9D655}" 202 EndProject 201 203 Global 202 204 GlobalSection(TestCaseManagementSettings) = postSolution 203 CategoryFile = HeuristicLab .vsmdi205 CategoryFile = HeuristicLab1.vsmdi 204 206 EndGlobalSection 205 207 GlobalSection(SolutionConfigurationPlatforms) = preSolution … … 3460 3462 {4FB4120E-CE65-473F-B2F0-FC2E82FF3761}.Visualization Debug|x86.ActiveCfg = Debug|x86 3461 3463 {4FB4120E-CE65-473F-B2F0-FC2E82FF3761}.Visualization Debug|x86.Build.0 = Debug|x86 3464 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.CEDMA Debug|Any CPU.ActiveCfg = Debug|Any CPU 3465 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.CEDMA Debug|Any CPU.Build.0 = Debug|Any CPU 3466 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.CEDMA Debug|x64.ActiveCfg = Debug|Any CPU 3467 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.CEDMA Debug|x86.ActiveCfg = Debug|Any CPU 3468 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 3469 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|Any CPU.Build.0 = Debug|Any CPU 3470 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|x64.ActiveCfg = Debug|x64 3471 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|x64.Build.0 = Debug|x64 3472 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Debug|x86.ActiveCfg = Debug|Any CPU 3473 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.GP Debug|Any CPU.ActiveCfg = Debug|Any CPU 3474 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.GP Debug|Any CPU.Build.0 = Debug|Any CPU 3475 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.GP Debug|x64.ActiveCfg = Debug|Any CPU 3476 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.GP Debug|x86.ActiveCfg = Debug|Any CPU 3477 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Release|Any CPU.ActiveCfg = Release|Any CPU 3478 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Release|Any CPU.Build.0 = Release|Any CPU 3479 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Release|x64.ActiveCfg = Release|Any CPU 3480 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Release|x86.ActiveCfg = Release|Any CPU 3481 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.v3.2 Debug|Any CPU.ActiveCfg = Debug|Any CPU 3482 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.v3.2 Debug|Any CPU.Build.0 = Debug|Any CPU 3483 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.v3.2 Debug|x64.ActiveCfg = Debug|Any CPU 3484 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.v3.2 Debug|x86.ActiveCfg = Debug|Any CPU 3485 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU 3486 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Visualization Debug|Any CPU.Build.0 = Debug|Any CPU 3487 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Visualization Debug|x64.ActiveCfg = Debug|Any CPU 3488 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655}.Visualization Debug|x86.ActiveCfg = Debug|Any CPU 3462 3489 EndGlobalSection 3463 3490 GlobalSection(SolutionProperties) = preSolution … … 3528 3555 {E3288D4B-7A51-499A-AC5B-019319CE51DC} = {410732DB-725A-4824-896B-C298978343C0} 3529 3556 {4FB4120E-CE65-473F-B2F0-FC2E82FF3761} = {410732DB-725A-4824-896B-C298978343C0} 3557 {7E18E25A-BCEB-467A-BACC-ABCA73F9D655} = {410732DB-725A-4824-896B-C298978343C0} 3530 3558 {C27DDF6C-84DF-45EF-B82F-57A28DD51166} = {78982D7C-D63D-4A3D-AE1F-F58AC007603B} 3531 3559 {B3D6D8D9-2B1F-47EC-9C73-77FAECF87310} = {78982D7C-D63D-4A3D-AE1F-F58AC007603B} -
trunk/sources/HeuristicLab/CopyAssemblies.cmd
r1740 r1806 93 93 copy "%SolutionDir%\HeuristicLab.SQLite\3.2\SQLite.NET.chm" .\plugins 94 94 copy "%SolutionDir%\HeuristicLab.StatisticalAnalysis\3.2\%Outdir%\HeuristicLab.StatisticalAnalysis-3.2.dll" .\plugins 95 copy "%SolutionDir%\HeuristicLab.SupportVectorMachines\3.2\%Outdir%\HeuristicLab.SupportVectorMachines-3.2.dll" .\plugins 95 96 copy "%SolutionDir%\HeuristicLab.TestFunctions\3.2\%Outdir%\HeuristicLab.TestFunctions-3.2.dll" .\plugins 96 97 copy "%SolutionDir%\HeuristicLab.ThreadParallelEngine\3.2\%Outdir%\HeuristicLab.ThreadParallelEngine-3.2.dll" .\plugins
Note: See TracChangeset
for help on using the changeset viewer.