Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/22/08 20:28:26 (16 years ago)
Author:
gkronber
Message:

fixed #119

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.StructureIdentification/TreeGardener.cs

    r155 r163  
    7474
    7575    #region random initialization
     76    internal IFunctionTree CreateRandomTree(ICollection<IFunction> allowedFunctions, int maxTreeSize, int maxTreeHeight) {
     77      // default is non-balanced trees
     78      return CreateRandomTree(allowedFunctions, maxTreeSize, maxTreeHeight, false);
     79    }
    7680    internal IFunctionTree CreateRandomTree(ICollection<IFunction> allowedFunctions, int maxTreeSize, int maxTreeHeight, bool balanceTrees) {
    7781
Note: See TracChangeset for help on using the changeset viewer.