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/Linear/LinearDiscriminantAnalysis.cs

    r5736 r5759  
    7171      string targetVariable = problemData.TargetVariable;
    7272      IEnumerable<string> allowedInputVariables = problemData.AllowedInputVariables;
    73       int samplesStart = problemData.TrainingPartitionStart.Value;
    74       int samplesEnd = problemData.TrainingPartitionEnd.Value;
     73      int samplesStart = problemData.TrainingPartition.Start;
     74      int samplesEnd = problemData.TrainingPartition.End;
    7575      IEnumerable<int> rows = Enumerable.Range(samplesStart, samplesEnd - samplesStart);
    7676      int nClasses = problemData.ClassNames.Count();
Note: See TracChangeset for help on using the changeset viewer.