Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/27/19 15:10:00 (5 years ago)
Author:
pfleck
Message:

#3030 Removed duplicated LazyInitFunc initialization.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/RandomForest/RandomForestModelSurrogate.cs

    r17272 r17278  
    8282    // wrap an actual model in a surrogate
    8383    public RandomForestModelSurrogate(IRandomForestModel model, string targetVariable, IDataAnalysisProblemData originalTrainingData,
    84       int seed, int nTrees, double r, double m, double[] classValues = null) : this(targetVariable, originalTrainingData, seed, nTrees, r, m, classValues) {
     84      int seed, int nTrees, double r, double m, double[] classValues = null)
     85      : this(targetVariable, originalTrainingData, seed, nTrees, r, m, classValues) {
    8586      fullModel = model;
    86       actualModel = CreateLazyInitFunc();
    8787    }
    8888
Note: See TracChangeset for help on using the changeset viewer.