Changeset 11461 for branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/BuildingBlockAnalyzers
- Timestamp:
- 10/13/14 17:23:08 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/BuildingBlockAnalyzers/SymbolicDataAnalysisPoly10Analyzer.cs
r11458 r11461 155 155 var rows = ProblemDataParameter.ActualValue.TrainingIndices.ToList(); 156 156 OnlineCalculatorError error; 157 var formatter = new SymbolicExpressionTreeStringFormatter();158 157 Dictionary<string, int> bbFrequencies = evaluationMap.Keys.ToDictionary(x => x, x => 0); 159 158 … … 195 194 const string x6 = "(variable 1 X6)"; 196 195 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)"; 198 198 const string x9 = "(variable 1 X9)"; 199 199 const string x10 = "(variable 1 X10)"; … … 223 223 var rows = ProblemDataParameter.ActualValue.TrainingIndices.ToList(); 224 224 225 foreach (var s in new[] { s 4, s5, s6, s7, s8, s9, s10 }) {225 foreach (var s in new[] { s1, s2, s2, s4, s5, s6, s7, s8, s9, s10 }) { 226 226 if (evaluationMap.ContainsKey(s)) continue; 227 227 var t = importer.Import(s);
Note: See TracChangeset
for help on using the changeset viewer.