Changeset 18086 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/KernelRidgeRegression
- Timestamp:
- 11/19/21 16:07:45 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/KernelRidgeRegression/KernelRidgeRegressionModel.cs
r17226 r18086 108 108 } 109 109 // cholesky decomposition 110 var res = alglib.trfac.spdmatrixcholesky(ref l, n, false );110 var res = alglib.trfac.spdmatrixcholesky(ref l, n, false, null); 111 111 if (res == false) { //try lua decomposition if cholesky faild 112 112 int[] pivots;
Note: See TracChangeset
for help on using the changeset viewer.