Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/13/10 20:44:31 (14 years ago)
Author:
gkronber
Message:

Fixed bugs related to dynamic symbol constraints with ADFs. #290 (Implement ADFs)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Symbols/InvokeFunctionTreeNode.cs

    r3294 r3338  
    2525  [StorableClass]
    2626  public sealed class InvokeFunctionTreeNode : SymbolicExpressionTreeNode {
    27     private string invokedFunctionName;
    28     [Storable]
    29     public string InvokedFunctionName {
    30       get { return invokedFunctionName; }
    31       set { this.invokedFunctionName = value; }
     27    public new InvokeFunction Symbol {
     28      get { return (InvokeFunction)base.Symbol; }
    3229    }
    3330
     
    3532    private InvokeFunctionTreeNode(InvokeFunctionTreeNode original)
    3633      : base(original) {
    37       invokedFunctionName = original.invokedFunctionName;
    3834    }
    3935
Note: See TracChangeset for help on using the changeset viewer.