Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/06/12 11:44:58 (12 years ago)
Author:
bburlacu
Message:

#1772: Fixed small bug (correct counting of node ranks) in the SymbolicExpressionTreeGenealogyAnalyzer. Fixed node tool tips in the GenealogyGraphChart.

File:
1 edited

Legend:

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

    r8248 r8249  
    101101            Data = node,
    102102            ToolTipText = "Id: " + node.Label + nl +
    103                           "Ranks: " + Graph[node].Ranks + nl +
     103                          "Ranks: " + string.Join(",", Graph[node].Ranks.Select(r => r.ToString())) + nl +
    104104                          "Quality: " + String.Format("{0:0.0000}", Graph[node].Quality) + nl +
    105105                          "IsElite: " + Graph[node].IsElite
Note: See TracChangeset for help on using the changeset viewer.