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/VariableNetworks/VariableNetwork.cs

    r13963 r14110  
    2323using System.Collections.Generic;
    2424using System.Linq;
    25 using System.Text;
    26 using System.Windows.Forms;
    2725using HeuristicLab.Common;
    2826using HeuristicLab.Core;
     
    8785
    8886    protected override List<List<double>> GenerateValues() {
    89       // var shuffledIdx = Enumerable.Range(0, numberOfFeatures).Shuffle(random).ToList();
    90 
    9187      // variable names are shuffled in the beginning (and sorted at the end)
    9288      variableNames = variableNames.Shuffle(random).ToArray();
    9389
    94       // a third of all variables are independen vars
     90      // a third of all variables are independent vars
    9591      List<List<double>> lvl0 = new List<List<double>>();
    9692      int numLvl0 = (int)Math.Ceiling(numberOfFeatures * 0.33);
Note: See TracChangeset for help on using the changeset viewer.