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

Location:
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj

    r16565 r17931  
    9999  </PropertyGroup>
    100100  <ItemGroup>
    101     <Reference Include="ALGLIB-3.7.0, Version=3.7.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    102       <HintPath>..\..\bin\ALGLIB-3.7.0.dll</HintPath>
     101    <Reference Include="ALGLIB-3.17.0, Version=3.17.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     102      <SpecificVersion>False</SpecificVersion>
     103      <HintPath>..\..\bin\ALGLIB-3.17.0.dll</HintPath>
    103104      <Private>False</Private>
    104105    </Reference>
  • trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Plugin.cs.frame

    r17184 r17931  
    3131  [PluginFile("HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.dll", PluginFileType.Assembly)]
    3232  [PluginFile("displayModelFrame.html", PluginFileType.Data)]
    33   [PluginDependency("HeuristicLab.ALGLIB", "3.7.0")]
     33  [PluginDependency("HeuristicLab.ALGLIB", "3.17.0")]
    3434  [PluginDependency("HeuristicLab.Collections", "3.3")]
    3535  [PluginDependency("HeuristicLab.Common", "3.3")]
  • trunk/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/RunCollectionVariableImpactView.cs

    r17180 r17931  
    269269          matrix[row, numberOfRuns + 2] = Math.Round(variableImpactsOverRuns[row].StandardDeviation(), 3);
    270270
    271           double leftTail = 0; double rightTail = 0; double bothTails = 0;
    272271          // calc differences of impacts for current variable and reference variable
    273272          double[] z = new double[referenceImpacts.Count];
     
    276275          }
    277276          // 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);
     277          alglib.wilcoxonsignedranktest(z, z.Length, 0, out var bothTails, out var leftTail, out var rightTail);
    279278          matrix[row, numberOfRuns + 3] = Math.Round(bothTails, 4);
    280279        }
Note: See TracChangeset for help on using the changeset viewer.