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/Regression/RegressionEnsembleSolution.cs

    r6254 r6302  
    5151      trainingPartitions = new Dictionary<IRegressionModel, IntRange>();
    5252      testPartitions = new Dictionary<IRegressionModel, IntRange>();
    53       foreach (var model in Model.Models) {
    54         trainingPartitions[model] = (IntRange)ProblemData.TrainingPartition.Clone();
    55         testPartitions[model] = (IntRange)ProblemData.TestPartition.Clone();
     53      foreach (var pair in original.trainingPartitions) {
     54        trainingPartitions[cloner.Clone(pair.Key)] = cloner.Clone(pair.Value);
    5655      }
     56      foreach (var pair in original.testPartitions) {
     57        testPartitions[cloner.Clone(pair.Key)] = cloner.Clone(pair.Value);
     58      }
     59      RecalculateResults();
    5760    }
    5861
Note: See TracChangeset for help on using the changeset viewer.