Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/14 18:29:47 (10 years ago)
Author:
bburlacu
Message:

#1772: Fixed identification of mutation fragments.

File:
1 edited

Legend:

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

    r10833 r10837  
    3636            var arc = new GenealogyGraphArc { Source = parent, Target = fragmentNode };
    3737            parent.AddForwardArc(arc);
    38             //            fragmentNode.Content.Index1 = parent.Content.Index1;
    3938          }
    4039          yield return fragmentNode; // no tracing if there are no parents
     
    6261          var fragmentNode = new FragmentNode {
    6362            Content = new Fragment<ISymbolicExpressionTreeNode> { Root = subtree },
    64             Rank = node.Rank
     63            Rank = node.Rank,
     64            Quality = node.Quality
    6565          };
    6666          if (parent != null) {
Note: See TracChangeset for help on using the changeset viewer.