- Timestamp:
- 04/13/10 18:27:13 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Dataset.cs
r3330 r3334 36 36 public sealed class Dataset : NamedItem, IStringConvertibleMatrix { 37 37 public Dataset() 38 : this(new string[ ] { "x" }, new double[,] { { 0.0} }) {38 : this(new string[0], new double[,] { { } }) { 39 39 } 40 40 … … 47 47 Data = data; 48 48 this.VariableNames = variableNames; 49 this.sortableView = false; 49 this.SortableView = false; 50 this.ReadOnlyView = true; 50 51 } 51 52
Note: See TracChangeset
for help on using the changeset viewer.