Changeset 18086 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
- Timestamp:
- 11/19/21 16:07:45 (3 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj
r16723 r18086 99 99 </PropertyGroup> 100 100 <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> 103 104 <Private>False</Private> 104 105 </Reference> -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Plugin.cs.frame
r17226 r18086 31 31 [PluginFile("HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.dll", PluginFileType.Assembly)] 32 32 [PluginFile("displayModelFrame.html", PluginFileType.Data)] 33 [PluginDependency("HeuristicLab.ALGLIB", "3. 7.0")]33 [PluginDependency("HeuristicLab.ALGLIB", "3.17.0")] 34 34 [PluginDependency("HeuristicLab.Collections", "3.3")] 35 35 [PluginDependency("HeuristicLab.Common", "3.3")] -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/RunCollectionVariableImpactView.cs
r17226 r18086 269 269 matrix[row, numberOfRuns + 2] = Math.Round(variableImpactsOverRuns[row].StandardDeviation(), 3); 270 270 271 double leftTail = 0; double rightTail = 0; double bothTails = 0;272 271 // calc differences of impacts for current variable and reference variable 273 272 double[] z = new double[referenceImpacts.Count]; … … 276 275 } 277 276 // wilcoxon signed rank test is used because the impact values of two variables in a single run are not independent 278 alglib.w sr.wilcoxonsignedranktest(z, z.Length, 0, ref bothTails, ref leftTail, refrightTail);277 alglib.wilcoxonsignedranktest(z, z.Length, 0, out var bothTails, out var leftTail, out var rightTail); 279 278 matrix[row, numberOfRuns + 3] = Math.Round(bothTails, 4); 280 279 }
Note: See TracChangeset
for help on using the changeset viewer.