Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/20/18 08:02:17 (7 years ago)
Author:
fholzing
Message:

#2902: Renamed ContainsNanInf to ContainsNanOrInfinity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Algorithms.DataAnalysis/3.4/kMeans/KMeansClustering.cs

    r15783 r15786  
    9191      int[] xyc;
    9292      double[,] inputMatrix = dataset.ToArray(allowedInputVariables, rows);
    93       if (inputMatrix.ContainsNanInf())
     93      if (inputMatrix.ContainsNanOrInfinity())
    9494        throw new NotSupportedException("k-Means clustering does not support NaN or infinity values in the input dataset.");
    9595
Note: See TracChangeset for help on using the changeset viewer.