Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/03/12 09:29:07 (12 years ago)
Author:
sforsten
Message:

#1784:

  • ProblemInstanceProvider are sorted now
  • the return values of ValueGenerator have been changed to !IEnumerable
  • changes have been applied to classes which are using the ValueGenerator
  • change of the cast in ProblemInstanceProviderViewGeneric and !importButton.Enable is set now in SetEnabledStateOfControls
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Regression/3.4/Nguyen/NguyenFunctionNine.cs

    r7682 r7698  
    2222using System;
    2323using System.Collections.Generic;
     24using System.Linq;
    2425
    2526namespace HeuristicLab.Problems.Instances.Regression {
     
    4748    protected override List<List<double>> GenerateValues() {
    4849      List<List<double>> data = new List<List<double>>();
    49       data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, 0, 1));
    50       data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, 0, 1));
     50      data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, 0, 1).ToList());
     51      data.Add(ValueGenerator.GenerateUniformDistributedValues(TestPartitionEnd, 0, 1).ToList());
    5152
    5253      double x, y;
Note: See TracChangeset for help on using the changeset viewer.