Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/14 14:50:52 (10 years ago)
Author:
bburlacu
Message:

#1772: Added missing Storable constructor to GenealogyGraphNode<T> class. Prefer cloning vertices in the GenealogyAnalyzer. Add In/Out Degree in node tooltip in the GenealogyGraphChart.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/GenealogyGraphChart.cs

    r10903 r11262  
    117117            ToolTipText = "Rank: " + node.Rank + nl +
    118118                          "Quality: " + String.Format("{0:0.0000}", node.Quality) + nl +
    119                           "IsElite: " + node.IsElite
     119                          "IsElite: " + node.IsElite + nl +
     120                          "In/Out Degree: " + node.InDegree + " " + node.OutDegree
    120121          };
    121122          Chart.Group.Add(visualNode);
Note: See TracChangeset for help on using the changeset viewer.