Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/29/09 18:28:45 (15 years ago)
Author:
gkronber
Message:

GP Refactoring #713

  • introduced a plugin for GP interfaces
  • created a new interface IGeneticProgrammingModel which represents GP models in HL scopes instead of IFunctionTree
  • changed interfaces IFunction and IFunctionTree
  • moved some files to new directories (general housekeeping)
  • changed all GP operators and engines to work with IGeneticProgrammingModels
  • removed parameters TreeSize and TreeHeight in all GP operators
  • changed parameter OperatorLibrary to FunctionLibrary in all GP operators
Location:
branches/GP-Refactoring-713/sources/HeuristicLab.GP.Interfaces
Files:
2 added
1 moved

Legend:

Unmodified
Added
Removed
  • branches/GP-Refactoring-713/sources/HeuristicLab.GP.Interfaces/3.3/IFunction.cs

    r2202 r2210  
    2525using HeuristicLab.Core;
    2626
    27 namespace HeuristicLab.GP {
     27namespace HeuristicLab.GP.Interfaces {
    2828  public interface IFunction : IItem {
    2929    string Name { get; }
     
    3838    int MinTreeSize { get; }
    3939    double Tickets { get; }
    40     IEnumerable<string> LocalParameterNames { get; }
    4140    IOperator Initializer { get; }
    4241    IOperator Manipulator { get; }
Note: See TracChangeset for help on using the changeset viewer.