Changeset 13201
- Timestamp:
- 11/16/15 23:04:33 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessCovarianceOptimizationProblem.cs
r13200 r13201 259 259 if (bestQ > this.bestQ) { 260 260 this.bestQ = bestQ; 261 this.bestHyperParameters = bestHyperParameters; 261 this.bestHyperParameters = new double[bestHyperParameters.Length]; 262 Array.Copy(bestHyperParameters, this.bestHyperParameters, this.bestHyperParameters.Length); 262 263 this.meanFunc = meanFunc; 263 264 this.covFunc = covFunc;
Note: See TracChangeset
for help on using the changeset viewer.