Changeset 8277
- Timestamp:
- 07/10/12 20:45:43 (12 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior/3.3
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior/3.3/Analyzers/GenealogyAnalyzer.cs
r8237 r8277 167 167 GenealogyGraph<Permutation> graph; 168 168 if (!Results.ContainsKey(PopulationGraphResultParameterName)) { 169 graph = new GenealogyGraph<Permutation>( );169 graph = new GenealogyGraph<Permutation>(new PermutationEqualityComparer()); 170 170 Results.Add(new Result(PopulationGraphResultParameterName, PopulationGraphResultParameterDescription, graph)); 171 171 } else { -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior/3.3/GenealogyGraph.cs
r8237 r8277 36 36 _nodes = new Dictionary<T, GenealogyGraphNode>(); 37 37 } 38 39 public GenealogyGraph(EqualityComparer<T> comp) { 40 _nodes = new Dictionary<T, GenealogyGraphNode>(comp); 41 } 42 38 43 39 44 public GenealogyGraph(GenealogyGraph<T> g) { -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior/3.3/HeuristicLab.Analysis.AlgorithmBehavior-3.3.csproj
r8269 r8277 102 102 <Compile Include="Analyzers\AlleleOccurencesInGenerationsAnalyzer.cs" /> 103 103 <Compile Include="Analyzers\ConvergenceSpeedAnalyzer.cs" /> 104 <Compile Include="Analyzers\DistinctSolutionsAnalyzer.cs" /> 104 105 <Compile Include="Creators\BestIndividualSchemataCreator.cs" /> 105 106 <Compile Include="Analyzers\BestIndividualQualityAnalyzer.cs" />
Note: See TracChangeset
for help on using the changeset viewer.