Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/19/11 13:52:12 (13 years ago)
Author:
mkommend
Message:

#1532:

  • Enabled renaming of symbols
  • Fixed cloning of grammers
  • Added readonly attribute in grammars to lock grammars during the algorithm run
  • Removed useless clone method in cloner
  • Changed CheckedItemCollectionViews to enable scrolling during the locked state
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Symbols/InvokeFunction.cs

    r5809 r6233  
    2020#endregion
    2121
    22 using System;
    2322using HeuristicLab.Common;
    2423using HeuristicLab.Core;
     
    3837    public string FunctionName {
    3938      get { return functionName; }
    40       set {
    41         if (value == null) throw new ArgumentNullException();
    42         functionName = value;
    43       }
    4439    }
    4540
     
    5348    public InvokeFunction(string functionName)
    5449      : base("Invoke: " + functionName, InvokeFunction.InvokeFunctionDescription) {
    55       this.FunctionName = functionName;
     50      this.functionName = functionName;
    5651    }
    5752
Note: See TracChangeset for help on using the changeset viewer.