Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/21/15 16:00:20 (9 years ago)
Author:
gkronber
Message:

#2435: updated some of the alglib calls (we should only use the external API whenever possible)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/MultinomialLogitClassification.cs

    r12622 r12792  
    7474        throw new NotSupportedException("Multinomial logit classification does not support NaN or infinity values in the input dataset.");
    7575
    76       alglib.logitmodel lm = new alglib.logitmodel();
    77       alglib.mnlreport rep = new alglib.mnlreport();
     76      alglib.logitmodel lm;
     77      alglib.mnlreport rep;
    7878      int nRows = inputMatrix.GetLength(0);
    7979      int nFeatures = inputMatrix.GetLength(1) - 1;
Note: See TracChangeset for help on using the changeset viewer.