Changeset 18086 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess
- 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/GaussianProcess/GaussianProcessModel.cs
r17226 r18086 321 321 322 322 // cholesky decomposition 323 var res = alglib.trfac.spdmatrixcholesky(ref l, n, false );323 var res = alglib.trfac.spdmatrixcholesky(ref l, n, false, null); 324 324 if (!res) throw new ArgumentException("Matrix is not positive semidefinite"); 325 325 return l; … … 412 412 413 413 // for stddev 414 alglib.ablas.rmatrixlefttrsm(n, newN, l, 0, 0, false, false, 0, ref sWKs, 0, 0);414 alglib.ablas.rmatrixlefttrsm(n, newN, l, 0, 0, false, false, 0, sWKs, 0, 0, null); 415 415 416 416 for (int i = 0; i < newN; i++) {
Note: See TracChangeset
for help on using the changeset viewer.