Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/09/21 19:41:33 (3 years ago)
Author:
gkronber
Message:

#3117: update alglib to version 3.17

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessModel.cs

    r17180 r17931  
    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.