Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/07/15 17:37:45 (8 years ago)
Author:
gkronber
Message:

#2071

  • added statement to set number of rows parsed which was lost in one of the previous changes
  • added an necessary invoke call in RegressionInstanceProviderView
File:
1 edited

Legend:

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

    r13440 r13441  
    227227      }
    228228
     229      this.rows = values.First().Count;
     230
    229231      // after everything has been parsed make sure the lists are as compact as possible
    230232      foreach (var l in values) {
     
    369371          try {
    370372            BytesRead = reader.BaseStream.Position;
    371           }
    372           catch (IOException) {
     373          } catch (IOException) {
    373374            BytesRead += CurrentLine.Length + 2; // guess
    374           }
    375           catch (NotSupportedException) {
     375          } catch (NotSupportedException) {
    376376            BytesRead += CurrentLine.Length + 2;
    377377          }
Note: See TracChangeset for help on using the changeset viewer.