Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/28/09 19:24:23 (15 years ago)
Author:
gkronber
Message:

Created a branch for #713

Location:
branches/GP-Refactoring-713
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/Subtraction.cs

    r2054 r2202  
    3030
    3131namespace HeuristicLab.GP.StructureIdentification {
    32   public sealed class Subtraction : FunctionBase {
     32  public sealed class Subtraction : BinaryFunction {
    3333    public override string Description {
    3434      get {
     
    4242    public Subtraction()
    4343      : base() {
    44       // 2 - 3 seems like an reasonable defaut (used for +,-,*,/) (discussion with swinkler and maffenze)
    45       //MK changed to only 2 allowed suboperators to be compliant with HL2
    46       AddConstraint(new NumberOfSubOperatorsConstraint(2, 2));
    47       AddConstraint(new SubOperatorTypeConstraint(0));
    48       AddConstraint(new SubOperatorTypeConstraint(1));
    4944    }
    5045  }
Note: See TracChangeset for help on using the changeset viewer.