Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/06/16 19:39:43 (8 years ago)
Author:
bburlacu
Message:

#1772: Improve SymbolicDataAnalysisGenealogyGraphView by using a better coloring scheme for frequent subtrees. Fix bug when reaching the end of the genealogy. Minor refactorings.

Location:
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Tracking/TraceCalculator.cs

    r13479 r13877  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    233233    /// </summary>
    234234    /// <param name="g">The genealogy graph node</param>
    235     /// <param name="si">The subtree index</param>
    236     /// <param name="fi">The fragment index</param>
    237235    /// <returns></returns>
    238236    private IGenealogyGraphNode<ISymbolicExpressionTree> AddTraceNode(IGenealogyGraphNode<ISymbolicExpressionTree> g) {
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/TreeMatching/QueryMatch.cs

    r13482 r13877  
    203203
    204204    public bool IsFirstSibling {
    205       get { return Node.Parent != null && Node == Node.Parent.Subtrees.First(); }
     205      get { return Parent != null && Node == Node.Parent.Subtrees.First(); }
    206206    }
    207207
    208208    public bool IsLastSibling {
    209       get { return Node.Parent != null && Node == Node.Parent.Subtrees.Last(); }
     209      get { return Parent != null && Node == Node.Parent.Subtrees.Last(); }
    210210    }
    211211
Note: See TracChangeset for help on using the changeset viewer.