Changeset 8336
- Timestamp:
- 07/27/12 01:00:40 (12 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior
- Files:
-
- 9 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.sln
r8161 r8336 13 13 EndProject 14 14 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Selection-3.3", "HeuristicLab.Selection\3.3\HeuristicLab.Selection-3.3.csproj", "{2C36CD4F-E5F5-43A4-801A-201EA895FE17}" 15 EndProject 16 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Analysis.AlgorithmBehavior.Analyzers-3.3", "HeuristicLab.Analysis.AlgorithmBehavior.Analyzers\3.3\HeuristicLab.Analysis.AlgorithmBehavior.Analyzers-3.3.csproj", "{2533D1F9-F7F6-46CB-90D2-76D254E38DEE}" 15 17 EndProject 16 18 Global … … 52 54 {2C36CD4F-E5F5-43A4-801A-201EA895FE17}.Release|x86.ActiveCfg = Release|x86 53 55 {2C36CD4F-E5F5-43A4-801A-201EA895FE17}.Release|x86.Build.0 = Release|x86 56 {2533D1F9-F7F6-46CB-90D2-76D254E38DEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 57 {2533D1F9-F7F6-46CB-90D2-76D254E38DEE}.Debug|Any CPU.Build.0 = Debug|Any CPU 58 {2533D1F9-F7F6-46CB-90D2-76D254E38DEE}.Debug|x64.ActiveCfg = Debug|Any CPU 59 {2533D1F9-F7F6-46CB-90D2-76D254E38DEE}.Debug|x86.ActiveCfg = Debug|Any CPU 60 {2533D1F9-F7F6-46CB-90D2-76D254E38DEE}.Release|Any CPU.ActiveCfg = Release|Any CPU 61 {2533D1F9-F7F6-46CB-90D2-76D254E38DEE}.Release|Any CPU.Build.0 = Release|Any CPU 62 {2533D1F9-F7F6-46CB-90D2-76D254E38DEE}.Release|x64.ActiveCfg = Release|Any CPU 63 {2533D1F9-F7F6-46CB-90D2-76D254E38DEE}.Release|x86.ActiveCfg = Release|Any CPU 54 64 EndGlobalSection 55 65 GlobalSection(SolutionProperties) = preSolution -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior/3.3/Analyzers/AlleleOccurencesInGenerationsPerIndAnalyzer.cs
r8287 r8336 104 104 for (int i = 0; i < GenerationsParameter.ActualValue.Value; i++) { 105 105 var individuals = graph.Values.Where(x => x.Rank.Contains(i)); 106 var others = graph.Values.Where(x => x.Rank.Contains(i - 0.5)); 107 var others2 = graph.Values.Where(x => x.Rank.Contains(i + 0.5)); 106 108 List<double> qualitiesInGen = new List<double>(); 107 109 foreach (var individual in individuals) { … … 109 111 } 110 112 113 points.Clear(); 111 114 foreach (var individual in individuals) { 112 115 var ind = (IntArray)individual.Data; … … 122 125 double qualityRange = Math.Abs(qualitiesInGen.Max() - qualitiesInGen.Min()); 123 126 points.Add(new Point2D<double>(cnt, Math.Abs(curQuality - qualitiesInGen.Min()) / qualityRange)); 124 125 127 } 126 128 -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior/3.3/HeuristicLab.Analysis.AlgorithmBehavior-3.3.csproj
r8287 r8336 104 104 <Compile Include="Analyzers\AlleleOccurencesInGenerationsPerIndAnalyzer.cs" /> 105 105 <Compile Include="Analyzers\DistinctSolutionsAnalyzer.cs" /> 106 <Compile Include="SimplePermutationEqualityComparer.cs" /> 106 107 <Compile Include="Creators\BestIndividualSchemataCreator.cs" /> 107 108 <Compile Include="Analyzers\BestIndividualQualityAnalyzer.cs" />
Note: See TracChangeset
for help on using the changeset viewer.