- Timestamp:
- 09/25/15 14:39:59 (9 years ago)
- Location:
- branches/gteufl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gteufl
- Property svn:ignore
-
old new 8 8 FxCopResults.txt 9 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll 10 11 HeuristicLab 3.3.5.1.ReSharper.user 11 12 HeuristicLab 3.3.6.0.ReSharper.user 12 13 HeuristicLab.4.5.resharper.user 13 14 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development 14 16 HeuristicLab.resharper.user 15 17 ProtoGen.exe … … 17 19 _ReSharper.HeuristicLab 18 20 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests 19 22 _ReSharper.HeuristicLab.ExtLibs 20 23 bin 21 24 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll 25 obj
-
- Property svn:mergeinfo changed
-
Property
svn:global-ignores
set to
*.nuget
packages
- Property svn:ignore
-
branches/gteufl/HeuristicLab.ExtLibs
- Property svn:mergeinfo changed
-
branches/gteufl/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/3.12/LibSVM-3.12/LibSVM-3.12.csproj
r8607 r12969 11 11 <RootNamespace>LibSVM</RootNamespace> 12 12 <AssemblyName>LibSVM-3.12</AssemblyName> 13 <TargetFrameworkVersion>v4. 0</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> … … 46 46 <WarningLevel>4</WarningLevel> 47 47 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 48 <Prefer32Bit>false</Prefer32Bit> 48 49 </PropertyGroup> 49 50 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> … … 55 56 <WarningLevel>4</WarningLevel> 56 57 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 58 <Prefer32Bit>false</Prefer32Bit> 57 59 </PropertyGroup> 58 60 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> … … 64 66 <ErrorReport>prompt</ErrorReport> 65 67 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 68 <Prefer32Bit>false</Prefer32Bit> 66 69 </PropertyGroup> 67 70 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> … … 75 78 </DocumentationFile> 76 79 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 80 <Prefer32Bit>false</Prefer32Bit> 77 81 </PropertyGroup> 78 82 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> … … 84 88 <ErrorReport>prompt</ErrorReport> 85 89 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 90 <Prefer32Bit>false</Prefer32Bit> 86 91 </PropertyGroup> 87 92 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> … … 93 98 <ErrorReport>prompt</ErrorReport> 94 99 <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> 100 <Prefer32Bit>false</Prefer32Bit> 95 101 </PropertyGroup> 96 102 <ItemGroup> -
branches/gteufl/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/3.12/LibSVM-3.12/SVM.cs
r8607 r12969 2623 2623 clone.C = C; 2624 2624 clone.nr_weight = nr_weight; 2625 clone.weight_label = new int[weight_label.Length]; 2626 Array.Copy(weight_label, clone.weight_label, weight_label.Length); 2627 clone.weight = new double[weight.Length]; 2628 Array.Copy(weight, clone.weight, weight.Length); 2625 if (weight_label != null) { 2626 clone.weight_label = new int[weight_label.Length]; 2627 Array.Copy(weight_label, clone.weight_label, weight_label.Length); 2628 } 2629 if (weight != null) { 2630 clone.weight = new double[weight.Length]; 2631 Array.Copy(weight, clone.weight, weight.Length); 2632 } 2629 2633 clone.nu = nu; 2630 2634 clone.p = p;
Note: See TracChangeset
for help on using the changeset viewer.