Changeset 12515 for branches/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Formatters
- Timestamp:
- 06/25/15 18:21:19 (9 years ago)
- Location:
- branches/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Symbolic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Symbolic
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic (added) merged: 12509
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Formatters/SymbolicDataAnalysisExpressionExcelFormatter.cs
r12012 r12515 71 71 } 72 72 73 public string Format(ISymbolicExpressionTree symbolicExpressionTree, Dataset dataset) {73 public string Format(ISymbolicExpressionTree symbolicExpressionTree, IDataset dataset) { 74 74 var stringBuilder = new StringBuilder(); 75 75 if (dataset != null) CalculateVariableMapping(symbolicExpressionTree, dataset); … … 85 85 } 86 86 87 private void CalculateVariableMapping(ISymbolicExpressionTree tree, Dataset dataset) {87 private void CalculateVariableMapping(ISymbolicExpressionTree tree, IDataset dataset) { 88 88 int columnIndex = 0; 89 89 int inputIndex = 0;
Note: See TracChangeset
for help on using the changeset viewer.