Changeset 10207
- Timestamp:
- 12/09/13 14:15:17 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior
- Files:
-
- 200 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/AlgorithmBehaviorUnitTests/AlgorithmBehaviorUnitTests.csproj
r10201 r10207 104 104 <Compile Include="ConvexHullTest.cs" /> 105 105 <Compile Include="RealVectorSolutionCacheTest.cs" /> 106 <Compile Include="VolumeCalculationTest.cs" /> 106 107 </ItemGroup> 107 108 <ItemGroup> -
branches/HeuristicLab.Analysis.AlgorithmBehavior/AlgorithmBehaviorUnitTests/ConvexHullTest.cs
r10198 r10207 83 83 } 84 84 85 p rivatedouble[][] CreateRandomData(int n, int m) {85 public static double[][] CreateRandomData(int n, int m) { 86 86 double[][] result = new double[n][]; 87 87 Random rand = new Random(); -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/ConvexHullMeasures.cs
r10201 r10207 28 28 public static class ConvexHullMeasures { 29 29 //Calculates the volumne of a d-simplex 30 p rivatestatic double CalculateSimplexVolume(List<double[]> simplex) {30 public static double CalculateSimplexVolume(List<double[]> simplex) { 31 31 int dim = simplex.First().Length; 32 32 double[,] diffs = new double[dim, dim]; -
branches/HeuristicLab.Analysis.AlgorithmBehavior/liblrs/Testliblrs/Program.cs
r10198 r10207 37 37 num[3] = 3; 38 38 num[4] = 4; 39 num[5] = 2;39 num[5] = 3; 40 40 41 41 num[6] = 3; 42 42 num[7] = 6; 43 num[8] = 2;43 num[8] = 3; 44 44 45 45 num[9] = 7; 46 46 num[10] = 8; 47 num[11] = 2;47 num[11] = 3; 48 48 49 49 den[0] = 1; -
branches/HeuristicLab.Analysis.AlgorithmBehavior/liblrs/ctest_liblrs/main.cpp
r10200 r10207 37 37 num[3] = 3; 38 38 num[4] = 4; 39 num[5] = 2;39 num[5] = 3; 40 40 41 41 num[6] = 3; 42 42 num[7] = 6; 43 num[8] = 2;43 num[8] = 3; 44 44 45 45 num[9] = 7; 46 46 num[10] = 8; 47 num[11] = 2;47 num[11] = 3; 48 48 49 49 den[0] = 1;
Note: See TracChangeset
for help on using the changeset viewer.