Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/06/15 16:39:55 (9 years ago)
Author:
bburlacu
Message:

#1772: Added storable attributes to the before/after evolution tracking operators in HeuristicLab.Problems.DataAnalysis.Symbolic. Very small changes to the trace calculator (updated license header, removed old sample count code).

File:
1 edited

Legend:

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

    r12283 r12287  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    118118
    119119        #region trace crossover
    120 
    121120        if (inArcs.Count == 2) {
    122121          var parent0 = (IGenealogyGraphNode<ISymbolicExpressionTree>)inArcs[0].Source;
     
    148147                traceCache.Add(t0);
    149148              }
    150               if (UpdateVertexWeights)
    151                 n.Weight++;
    152149              var t1 = new Tuple<IGenealogyGraphNode<ISymbolicExpressionTree>, IGenealogyGraphNode<ISymbolicExpressionTree>, int>(parent1, n, fragment.Index2);
    153150              if (!(CacheTraceNodes && traceCache.Contains(t1))) {
Note: See TracChangeset for help on using the changeset viewer.