Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11461


Ignore:
Timestamp:
10/13/14 17:23:08 (9 years ago)
Author:
bburlacu
Message:

#1772: Implemented poly-10 building blocks analyzer and useful genes analyzer (acts as a sort of "intelligent" pruning method).

Location:
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/BuildingBlockAnalyzers/SymbolicDataAnalysisPoly10Analyzer.cs

    r11458 r11461  
    155155      var rows = ProblemDataParameter.ActualValue.TrainingIndices.ToList();
    156156      OnlineCalculatorError error;
    157       var formatter = new SymbolicExpressionTreeStringFormatter();
    158157      Dictionary<string, int> bbFrequencies = evaluationMap.Keys.ToDictionary(x => x, x => 0);
    159158
     
    195194      const string x6 = "(variable 1 X6)";
    196195      const string x7 = "(variable 1 X7)";
    197       const string x8 = "(variable 1 X8)";
     196      // x8 is never used in the formula
     197      // const string x8 = "(variable 1 X8)";
    198198      const string x9 = "(variable 1 X9)";
    199199      const string x10 = "(variable 1 X10)";
     
    223223      var rows = ProblemDataParameter.ActualValue.TrainingIndices.ToList();
    224224
    225       foreach (var s in new[] { s4, s5, s6, s7, s8, s9, s10 }) {
     225      foreach (var s in new[] { s1, s2, s2, s4, s5, s6, s7, s8, s9, s10 }) {
    226226        if (evaluationMap.ContainsKey(s)) continue;
    227227        var t = importer.Import(s);
Note: See TracChangeset for help on using the changeset viewer.