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.Boolean/3.3/Symbols
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • branches/GP-Refactoring-713/sources/HeuristicLab.GP.Boolean/3.3/Symbols/Not.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 
    3122namespace HeuristicLab.GP.Boolean{
    32   public sealed class Not : FunctionBase {
    33 
    34     public override string Description {
    35       get { return ""; }
    36     }
    37 
    38     public Not()
    39       : base() {
    40       MinArity = 1; MaxArity = 1;
    41     }
     23  public sealed class Not : UnaryFunction {
    4224  }
    4325}
Note: See TracChangeset for help on using the changeset viewer.