Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/13/09 12:09:04 (14 years ago)
Author:
gkronber
Message:

Fixed #801.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/Symbols/Division.cs

    r2235 r2490  
    2222
    2323namespace HeuristicLab.GP.StructureIdentification {
    24   public sealed class Division : BinaryFunction {
     24  public sealed class Division : FunctionBase {
    2525    public override string Description {
    2626      get {
     
    3636    }
    3737
    38     public Division() : base() { }
     38    public Division()
     39      : base() {
     40      MinSubTrees = 1;
     41      MaxSubTrees = 3;
     42    }
    3943
    4044    public override HeuristicLab.GP.Interfaces.IFunctionTree GetTreeNode() {
Note: See TracChangeset for help on using the changeset viewer.