Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/11 02:22:45 (13 years ago)
Author:
mkommend
Message:

#1418:

  • Worked on IntRange and DoubleRange
  • Updated evaluators, analyzers, problems and problem data to use IntRanges
  • Removed properties to access the value of LookupParameter
  • Corrected files.txt
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/kMeans/KMeansClustering.cs

    r5658 r5759  
    8888      Dataset dataset = problemData.Dataset;
    8989      IEnumerable<string> allowedInputVariables = problemData.AllowedInputVariables;
    90       int start = problemData.TrainingPartitionStart.Value;
    91       int end = problemData.TrainingPartitionEnd.Value;
     90      int start = problemData.TrainingPartition.Start;
     91      int end = problemData.TrainingPartition.End;
    9292      IEnumerable<int> rows = Enumerable.Range(start, end - start);
    9393      int info;
Note: See TracChangeset for help on using the changeset viewer.