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/Addition.cs

    r1529 r2202  
    4242      : base() {
    4343      // 2 - 3 seems like an reasonable defaut (used for +,-,*,/) (discussion with swinkler and maffenze)
    44       AddConstraint(new NumberOfSubOperatorsConstraint(2, 3));
    45       AddConstraint(new SubOperatorTypeConstraint(0));
    46       AddConstraint(new SubOperatorTypeConstraint(1));
    47       AddConstraint(new SubOperatorTypeConstraint(2));
     44      MinArity = 2;
     45      MaxArity = 3;
    4846    }
    4947  }
Note: See TracChangeset for help on using the changeset viewer.