Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/30/09 10:47:00 (15 years ago)
Author:
gkronber
Message:

GP Refactoring: #713

  • added project GP.Operators
  • moved operators from plugin GP to plugin GP.Operators
  • deleted unused constraints
  • removed dependency of GP plugins on Constraints plugin
  • moved StructID functions into directory Symbols
  • deleted unused class FunView
  • implemented add and remove functionality for the FunctionLibraryView
Location:
branches/GP-Refactoring-713/sources/HeuristicLab.GP.Operators
Files:
2 added
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/GP-Refactoring-713/sources/HeuristicLab.GP.Operators/3.3/Manipulation/DeleteSubTreeManipulation.cs

    r2211 r2212  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423using HeuristicLab.Core;
    25 using HeuristicLab.Data;
    26 using HeuristicLab.Operators;
    2724using HeuristicLab.Random;
    2825using System.Diagnostics;
    2926using HeuristicLab.GP.Interfaces;
    3027
    31 namespace HeuristicLab.GP {
     28namespace HeuristicLab.GP.Operators {
    3229  public class DeleteSubTreeManipulation : GPManipulatorBase {
    3330    public override string Description {
     
    5451        gpModel.FunctionTree = newTree;
    5552        // schedule an operation to initialize the newly created operator
    56         return TreeGardener.CreateInitializationOperation(TreeGardener.GetAllSubTrees(newTree), scope);
     53        return Util.CreateInitializationOperation(TreeGardener.GetAllSubTrees(newTree), scope);
    5754      }
    5855
     
    8481        gpModel.Height = gpModel.FunctionTree.GetHeight();
    8582        // return an initialization operation for the newly created tree
    86         return TreeGardener.CreateInitializationOperation(TreeGardener.GetAllSubTrees(newFunctionTree), scope);
     83        return Util.CreateInitializationOperation(TreeGardener.GetAllSubTrees(newFunctionTree), scope);
    8784      }
    8885    }
Note: See TracChangeset for help on using the changeset viewer.