Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/08 23:00:48 (16 years ago)
Author:
gkronber
Message:

fixed compilation problems introduced with r428 (ticket #225)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.StructureIdentification/Manipulation/FullTreeShaker.cs

    r155 r429  
    3434  public class FullTreeShaker : DelegatingOperator {
    3535    public override string Description {
    36       get { return "Manipulates all tree nodes for which a '"+GPOperatorLibrary.MANIPULATION+"' variable is defined."; }
     36      get { return "Manipulates all tree nodes for which a '" + FunctionBase.MANIPULATION + "' variable is defined."; }
    3737    }
    3838
     
    5757
    5858      TreeGardener gardener = new TreeGardener(mt, library);
    59       var parametricBranches = gardener.GetAllSubTrees(tree).Where(branch => branch.Function.GetVariable(GPOperatorLibrary.MANIPULATION) != null);
     59      var parametricBranches = gardener.GetAllSubTrees(tree).Where(branch => branch.Function.GetVariable(FunctionBase.MANIPULATION) != null);
    6060      foreach(IFunctionTree subTree in parametricBranches) {
    61         IOperator mutation =(IOperator)subTree.Function.GetVariable(GPOperatorLibrary.MANIPULATION).Value;
     61        IOperator mutation = (IOperator)subTree.Function.GetVariable(FunctionBase.MANIPULATION).Value;
    6262
    6363        // store all local variables into a temporary scope
     
    7373      // save all existing sub-scopes in a backup scope
    7474      Scope backupScope = new Scope("backup");
    75       foreach (Scope subScope in scope.SubScopes) {
     75      foreach(Scope subScope in scope.SubScopes) {
    7676        backupScope.AddSubScope(subScope);
    7777      }
Note: See TracChangeset for help on using the changeset viewer.