Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3343


Ignore:
Timestamp:
04/14/10 09:54:14 (14 years ago)
Author:
gkronber
Message:

Fixed compilation problem in artificial ant problem. #290 (Implement ADFs)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/AntInterpreter.cs

    r3338 r3343  
    129129      } else if (currentNode.Symbol is InvokeFunction) {
    130130        var invokeNode = currentNode as InvokeFunctionTreeNode;
    131         var functionDefinition = (SymbolicExpressionTreeNode)FindMatchingFunction(invokeNode.InvokedFunctionName).Clone();
     131        var functionDefinition = (SymbolicExpressionTreeNode)FindMatchingFunction(invokeNode.Symbol.FunctionName).Clone();
    132132        var argumentCutPoints = (from node in functionDefinition.IterateNodesPrefix()
    133133                                 where node.SubTrees.Count > 0
Note: See TracChangeset for help on using the changeset viewer.