- Timestamp:
- 02/03/20 17:25:38 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3040_VectorBasedGP/HeuristicLab.DataPreprocessing/3.4/Data/PreprocessingData.cs
r17180 r17418 407 407 } else if (dataset.VariableHasType<DateTime>(variableName)) { 408 408 variableValues.Insert(columnIndex, dataset.GetDateTimeValues(variableName).ToList()); 409 } else if (dataset.VariableHasType<DoubleVector>(variableName)) { 410 variableValues.Insert(columnIndex, dataset.GetDoubleVectorValues(variableName).ToList()); 409 411 } else { 410 412 throw new ArgumentException("The datatype of column " + variableName + " must be of type double, string or DateTime"); … … 681 683 l = 0; 682 684 ir = n - 1; 683 for (; ;) {685 for (; ; ) { 684 686 if (ir <= l + 1) { 685 687 // Active partition contains 1 or 2 elements. … … 706 708 j = ir; 707 709 a = arr[l + 1]; // Partitioning element. 708 for (; ;) { // Beginning of innermost loop.710 for (; ; ) { // Beginning of innermost loop. 709 711 do i++; while (arr[i].CompareTo(a) < 0); // Scan up to find element > a. 710 712 do j--; while (arr[j].CompareTo(a) > 0); // Scan down to find element < a.
Note: See TracChangeset
for help on using the changeset viewer.