- Timestamp:
- 02/25/20 15:33:28 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3040_VectorBasedGP/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r17448 r17449 364 364 365 365 var doubleVectorValues = values as IList<DoubleVector>; 366 if (doubleVectorValues != null) return doubleVectorValues.Select(x => DoubleVector.Build.DenseOfVector(x)).ToList();366 if (doubleVectorValues != null) return doubleVectorValues.Select(x => x.Clone()).ToList(); 367 367 368 368 throw new ArgumentException(string.Format("Unsupported variable type {0}.", GetElementType(values)));
Note: See TracChangeset
for help on using the changeset viewer.