Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/27/12 16:55:14 (12 years ago)
Author:
mkommend
Message:

#1920: Changed CreateSolution method in all DataAnalysisModels to transform the handed IProblemData to the correct type.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessModel.cs

    r8484 r8528  
    220220    }
    221221    public GaussianProcessRegressionSolution CreateRegressionSolution(IRegressionProblemData problemData) {
    222       return new GaussianProcessRegressionSolution(this, problemData);
     222      return new GaussianProcessRegressionSolution(this, new RegressionProblemData(problemData));
    223223    }
    224224    IRegressionSolution IRegressionModel.CreateRegressionSolution(IRegressionProblemData problemData) {
Note: See TracChangeset for help on using the changeset viewer.