- Timestamp:
- 11/25/14 03:26:00 (10 years ago)
- Location:
- branches/OptimizationNetworks
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OptimizationNetworks
- Property svn:mergeinfo changed
-
branches/OptimizationNetworks/HeuristicLab.ExtLibs
- Property svn:mergeinfo changed
/branches/DataPreprocessing/HeuristicLab.ExtLibs (added) merged: 11009 /stable/HeuristicLab.ExtLibs (added) merged: 11170 /trunk/sources/HeuristicLab.ExtLibs (added) merged: 11075,11114,11124,11127-11128,11153,11171,11298,11306
- Property svn:mergeinfo changed
-
branches/OptimizationNetworks/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/3.12/HeuristicLab.LibSVM-3.12/Plugin.cs.frame
r9456 r11576 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/OptimizationNetworks/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/3.12/HeuristicLab.LibSVM-3.12/Properties/AssemblyInfo.cs.frame
r9456 r11576 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 32 32 [assembly: AssemblyCompany("")] 33 33 [assembly: AssemblyProduct("HeuristicLab")] 34 [assembly: AssemblyCopyright("(c) 2002-201 3HEAL")]34 [assembly: AssemblyCopyright("(c) 2002-2014 HEAL")] 35 35 [assembly: AssemblyTrademark("")] 36 36 [assembly: AssemblyCulture("")] -
branches/OptimizationNetworks/HeuristicLab.ExtLibs/HeuristicLab.LibSVM/3.12/LibSVM-3.12/SVM.cs
r8607 r11576 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.