Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/26/11 17:55:44 (13 years ago)
Author:
gkronber
Message:

#1450: fixed cloning bug and a problem in the regression line chart view.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationEnsembleSolution.cs

    r6254 r6302  
    5454      trainingPartitions = new Dictionary<IClassificationModel, IntRange>();
    5555      testPartitions = new Dictionary<IClassificationModel, IntRange>();
    56       foreach (var model in Model.Models) {
    57         trainingPartitions[model] = (IntRange)ProblemData.TrainingPartition.Clone();
    58         testPartitions[model] = (IntRange)ProblemData.TestPartition.Clone();
     56      foreach (var pair in original.trainingPartitions) {
     57        trainingPartitions[cloner.Clone(pair.Key)] = cloner.Clone(pair.Value);
     58      }
     59      foreach (var pair in original.testPartitions) {
     60        testPartitions[cloner.Clone(pair.Key)] = cloner.Clone(pair.Value);
    5961      }
    6062      RecalculateResults();
Note: See TracChangeset for help on using the changeset viewer.