Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/19/16 14:47:39 (8 years ago)
Author:
mkommend
Message:

#2618: Removed obsolete code in friedman random functions and variable networks instance providers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Friedman/FriedmanRandomFunction.cs

    r13939 r14110  
    2929namespace HeuristicLab.Problems.Instances.DataAnalysis {
    3030  public class FriedmanRandomFunction : ArtificialRegressionDataDescriptor {
    31     private int nTrainingSamples;
    32     private int nTestSamples;
     31    private readonly int nTrainingSamples;
     32    private readonly int nTestSamples;
    3333
    34     private int numberOfFeatures;
    35     private double noiseRatio;
    36     private IRandom random;
     34    private readonly int numberOfFeatures;
     35    private readonly double noiseRatio;
     36    private readonly IRandom random;
    3737
    3838    public override string Name { get { return string.Format("FriedmanRandomFunction-{0:0%} ({1} dim)", noiseRatio, numberOfFeatures); } }
Note: See TracChangeset for help on using the changeset viewer.