Free cookie consent management tool by TermsFeed Policy Generator

Changeset 173


Ignore:
Timestamp:
04/23/08 13:24:12 (16 years ago)
Author:
gkronber
Message:

fixed a bug non-matching string constant

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAnalysis/DatasetParser.cs

    r172 r173  
    8989    public int TrainingSamplesStart {
    9090      get {
    91         if(!metadata.ContainsKey("TRAININGSAMPLESTART")) return 0;
     91        if(!metadata.ContainsKey("TRAININGSAMPLESSTART")) return 0;
    9292        else return metadata["TRAININGSAMPLESSTART"][0].intValue;
    9393      }
     
    9696    public int TrainingSamplesEnd {
    9797      get {
    98         if(!metadata.ContainsKey("TRAININGSAMPLEEND")) return rows;
     98        if(!metadata.ContainsKey("TRAININGSAMPLESEND")) return rows;
    9999        else return metadata["TRAININGSAMPLESEND"][0].intValue;
    100100      }
Note: See TracChangeset for help on using the changeset viewer.