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.Problems.DataAnalysis.Symbolic.Views/3.4/RunCollectionVariableImpactView.cs

    r12012 r12792  
    276276          }
    277277          // wilcoxon signed rank test is used because the impact values of two variables in a single run are not independent
    278           alglib.wsr.wilcoxonsignedranktest(z, z.Length, 0, ref bothTails, ref leftTail, ref rightTail);
     278          alglib.wilcoxonsignedranktest(z, z.Length, 0, out bothTails, out leftTail, out rightTail);
    279279          matrix[row, numberOfRuns + 3] = Math.Round(bothTails, 4);
    280280        }
Note: See TracChangeset for help on using the changeset viewer.