Changeset 5759 for branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/kMeans/KMeansClustering.cs
- Timestamp:
- 03/19/11 02:22:45 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/kMeans/KMeansClustering.cs
r5658 r5759 88 88 Dataset dataset = problemData.Dataset; 89 89 IEnumerable<string> allowedInputVariables = problemData.AllowedInputVariables; 90 int start = problemData.TrainingPartition Start.Value;91 int end = problemData.TrainingPartition End.Value;90 int start = problemData.TrainingPartition.Start; 91 int end = problemData.TrainingPartition.End; 92 92 IEnumerable<int> rows = Enumerable.Range(start, end - start); 93 93 int info;
Note: See TracChangeset
for help on using the changeset viewer.