Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/30/09 19:41:58 (15 years ago)
Author:
gkronber
Message:

GP Refactoring #713

  • cleaned code
  • reintegrated GP.Boolean and GP.SantaFe
  • worked on serialization of function trees
Location:
branches/GP-Refactoring-713/sources/HeuristicLab.GP.SantaFe/3.3/Symbols
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • branches/GP-Refactoring-713/sources/HeuristicLab.GP.SantaFe/3.3/Symbols/Left.cs

    r2211 r2216  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    25 using HeuristicLab.Data;
    26 using HeuristicLab.Core;
    27 using System.Xml;
    28 using HeuristicLab.Constraints;
    29 using HeuristicLab.DataAnalysis;
    30 using HeuristicLab.Random;
    31 
    3222namespace HeuristicLab.GP.SantaFe {
    33   public sealed class Left : FunctionBase {
    34 
    35     public override string Description {
    36       get { return ""; }
    37     }
    38 
    39     public Left()
    40       : base() {
    41       MinArity = 0; MaxArity = 0;
    42     }
     23  public sealed class Left : Terminal {
    4324  }
    4425}
Note: See TracChangeset for help on using the changeset viewer.