- Timestamp:
- 04/09/21 19:41:33 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/KernelRidgeRegression/KernelRidgeRegressionModel.cs
r17180 r17931 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.