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.Analysis/3.3/MultidimensionalScaling/MultidimensionalScaling.cs

    r17180 r17931  
    7272      if (dimension != dissimilarities.Columns || coordinates.Rows != dimension) throw new ArgumentException("The number of coordinates and the number of rows and columns in the dissimilarities matrix do not match.");
    7373
    74       double epsg = 1e-7;
    75       double epsf = 0;
    7674      double epsx = 0;
    7775      int maxits = 0;
     
    8684          try {
    8785            alglib.minlmcreatevj(dimension - 1, c, out state);
    88             alglib.minlmsetcond(state, epsg, epsf, epsx, maxits);
     86            alglib.minlmsetcond(state, epsx, maxits);
    8987            alglib.minlmoptimize(state, StressFitness, StressJacobian, null, new Info(coordinates, dissimilarities, i));
    9088            alglib.minlmresults(state, out c, out rep);
Note: See TracChangeset for help on using the changeset viewer.