Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/19/21 16:07:45 (3 years ago)
Author:
mkommend
Message:

#2521: Merged trunk changes into branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessModel.cs

    r17226 r18086  
    321321
    322322      // cholesky decomposition
    323       var res = alglib.trfac.spdmatrixcholesky(ref l, n, false);
     323      var res = alglib.trfac.spdmatrixcholesky(ref l, n, false, null);
    324324      if (!res) throw new ArgumentException("Matrix is not positive semidefinite");
    325325      return l;
     
    412412
    413413        // 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);
    415415
    416416        for (int i = 0; i < newN; i++) {
Note: See TracChangeset for help on using the changeset viewer.