Changeset 1227 for trunk/sources/HeuristicLab.GP.StructureIdentification
- Timestamp:
- 02/25/09 11:50:52 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.GP.StructureIdentification/ModelAnalyzerExporter.cs
r656 r1227 48 48 public string Export(IFunctionTree tree) { 49 49 string result = ExportFunction(tree.Function, tree); 50 result += "(\n"; 50 if(tree.SubTrees.Count>0) 51 result += "(\n"; 51 52 foreach(IFunctionTree subTree in tree.SubTrees) { 52 53 result += Export(subTree);
Note: See TracChangeset
for help on using the changeset viewer.