Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/14/21 17:59:53 (3 years ago)
Author:
dpiringe
Message:

#3136

  • changed the StructureTemplateView -> nodes of type SubFunctionTreeNode are now clickable
    • still need to overhaul the UI elements
  • added a way to parse SubFunctionTreeNode with a unique name in InfixExpressionParser
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3136_Structural_GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/StructureTemplate/StructureTemplate.cs

    r18066 r18067  
    6262        if (node is SubFunctionTreeNode subFunctionTreeNode) {
    6363          var subFunction = new SubFunction() {
    64             Name = $"f{count++}({string.Join(",", subFunctionTreeNode.FunctionArguments)})",
    65             FunctionArguments = subFunctionTreeNode.FunctionArguments
     64            Name = $"f{count++}({string.Join(",", subFunctionTreeNode.Arguments)})",
     65            FunctionArguments = subFunctionTreeNode.Arguments
    6666          };
    6767          subFunctionTreeNode.SubFunction = subFunction;
Note: See TracChangeset for help on using the changeset viewer.