Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3334 for trunk/sources


Ignore:
Timestamp:
04/13/10 18:27:13 (14 years ago)
Author:
mkommend
Message:

made dataset readonly (ticket #638)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Dataset.cs

    r3330 r3334  
    3636  public sealed class Dataset : NamedItem, IStringConvertibleMatrix {
    3737    public Dataset()
    38       : this(new string[] { "x" }, new double[,] { { 0.0 } }) {
     38      : this(new string[0], new double[,] { { } }) {
    3939    }
    4040
     
    4747      Data = data;
    4848      this.VariableNames = variableNames;
    49       this.sortableView = false;
     49      this.SortableView = false;
     50      this.ReadOnlyView = true;
    5051    }
    5152
Note: See TracChangeset for help on using the changeset viewer.