Changeset 5020
- Timestamp:
- 12/04/10 10:25:13 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis.Extensions/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Formatters/SymbolicExpressionTreeMATLABFormatter.cs
r5019 r5020 54 54 55 55 if (symbol is ProgramRootSymbol) { 56 // all variable names, contains duplicates!57 56 var variableNames = node.IterateNodesPostfix() 58 57 .OfType<VariableTreeNode>() 59 58 .Select(n => n.VariableName) 59 .Distinct() 60 60 .OrderBy(x => x); 61 61 foreach (string variableName in variableNames)
Note: See TracChangeset
for help on using the changeset viewer.