Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13539


Ignore:
Timestamp:
01/18/16 14:06:17 (8 years ago)
Author:
mkommend
Message:

#2536: Implemented rows and columns explicitly in the Dataset.

File:
1 edited

Legend:

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

    r13427 r13539  
    194194    public int Rows {
    195195      get { return rows; }
    196       set { throw new NotSupportedException(); }
    197     }
     196    }
     197    int IStringConvertibleMatrix.Rows {
     198      get { return Rows; }
     199      set { throw new NotSupportedException(); }
     200    }
     201
    198202    public int Columns {
    199203      get { return variableNames.Count; }
     204    }
     205    int IStringConvertibleMatrix.Columns {
     206      get { return Columns; }
    200207      set { throw new NotSupportedException(); }
    201208    }
Note: See TracChangeset for help on using the changeset viewer.