Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8559


Ignore:
Timestamp:
09/03/12 16:16:07 (12 years ago)
Author:
gkronber
Message:

#1292: removed the default constructor for FeatureCorrelation as it simply runs into a NullReferenceException (the default ctor is not used anywhere and is senseless).

This fixes the unit test fail for the meta-optimization branch on the builder.

File:
1 edited

Legend:

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

    r8542 r8559  
    6767    private BackgroundWorkerInfo bwInfo;
    6868
    69     public FeatureCorrelation() {
    70       this.Title = "Feature Correlation";
    71       this.columnNames = problemData.Dataset.DoubleVariables.ToList();
    72       this.rowNames = problemData.Dataset.DoubleVariables.ToList();
    73       sortableView = true;
    74     }
    7569    public FeatureCorrelation(IDataAnalysisProblemData problemData)
    7670      : base() {
Note: See TracChangeset for help on using the changeset viewer.