Changeset 17448 for branches/3040_VectorBasedGP/HeuristicLab.Problems.Instances.DataAnalysis/3.3/TableFileParser.cs
- Timestamp:
- 02/25/20 07:41:01 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3040_VectorBasedGP/HeuristicLab.Problems.Instances.DataAnalysis/3.3/TableFileParser.cs
r17414 r17448 30 30 using HeuristicLab.Problems.DataAnalysis; 31 31 32 using DoubleVector = MathNet.Numerics.LinearAlgebra.Vector<double>; 33 32 34 namespace HeuristicLab.Problems.Instances.DataAnalysis { 33 35 public class TableFileParser : Progress<long> { // reports the number of bytes read … … 272 274 var vectorList = new List<DoubleVector>(stringList.Count); 273 275 for (int j = 0; j < doubles.Length; j++) { 274 vectorList.Add( new DoubleVector(doubles[j]));276 vectorList.Add(DoubleVector.Build.Dense(doubles[j])); 275 277 } 276 278
Note: See TracChangeset
for help on using the changeset viewer.