Changeset 5861
- Timestamp:
- 03/29/11 14:24:39 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorMachineModel.cs
r5809 r5861 28 28 using HeuristicLab.Core; 29 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 using HeuristicLab.Problems.DataAnalysis; 30 31 using SVM; 31 using HeuristicLab.Problems.DataAnalysis;32 using System.Drawing;33 32 34 33 namespace HeuristicLab.Algorithms.DataAnalysis { … … 97 96 this.model = original.model; 98 97 this.rangeTransform = original.rangeTransform; 98 this.targetVariable = original.targetVariable; 99 99 this.allowedInputVariables = (string[])original.allowedInputVariables.Clone(); 100 100 if (original.classValues != null) … … 195 195 } 196 196 } 197 #endregion 197 #endregion 198 198 } 199 199 }
Note: See TracChangeset
for help on using the changeset viewer.