Changeset 15280 for branches/Async/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationProblemData.cs
- Timestamp:
- 07/23/17 00:52:14 (7 years ago)
- Location:
- branches/Async
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Async
- Property svn:mergeinfo changed
-
branches/Async/HeuristicLab.Problems.DataAnalysis
-
branches/Async/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationProblemData.cs
r12509 r15280 283 283 private void AfterDeserialization() { 284 284 RegisterParameterEvents(); 285 286 classNamesCache = new List<string>(); 287 for (int i = 0; i < ClassNamesParameter.Value.Rows; i++) 288 classNamesCache.Add(ClassNamesParameter.Value[i, 0]); 289 285 290 // BackwardsCompatibility3.4 286 291 #region Backwards compatible code, remove with 3.5 … … 297 302 : base(original, cloner) { 298 303 RegisterParameterEvents(); 304 classNamesCache = new List<string>(); 305 for (int i = 0; i < ClassNamesParameter.Value.Rows; i++) 306 classNamesCache.Add(ClassNamesParameter.Value[i, 0]); 299 307 } 300 308 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.