Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/21/13 16:02:47 (11 years ago)
Author:
bburlacu
Message:

#1772: Added base class for the fragment analyzers. Improved analyzers, added SymbolicExpressionTreeRelativeFragmentDepthAnalyzer. Added LineageExplorer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionaryTracking/HeuristicLab.EvolutionaryTracking/3.4/Analyzers/SymbolicExpressionTreeFrequentPatternsAnalyzer.cs

    r9082 r9238  
    9696    }
    9797    #endregion
    98 
    9998    #region Properties
    10099    public bool EnabledByDefault {
     
    361360          // adjust weights according to the probability a child will find itself on a certain argument position
    362361          for (int j = 0; j != possibleChildConnections.Count; ++j) {
    363             var childSymbolNode = possibleChildConnections[j].Target as SymbolNode;
     362            var childSymbolNode = (SymbolNode)possibleChildConnections[j].Target;
    364363            double sumPos = childSymbolNode.Positions.Sum(x => x.Value);
    365364            int v; childSymbolNode.Positions.TryGetValue(i, out v);
Note: See TracChangeset for help on using the changeset viewer.