Changeset 284 for trunk/sources/HeuristicLab.StructureIdentification
- Timestamp:
- 06/03/08 13:02:26 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.StructureIdentification/TreeGardener.cs
r202 r284 378 378 return selectedTerminal; 379 379 } else { 380 IFunction[] possibleFunctions = allFunctions.Where(f => GetMinimalTreeHeight(f) <= maxTreeHeight &&380 IFunction[] possibleFunctions = functions.Where(f => GetMinimalTreeHeight(f) <= maxTreeHeight && 381 381 GetMinimalTreeSize(f) <= maxTreeSize).ToArray(); 382 382 IFunction selectedFunction = RandomSelect(possibleFunctions);
Note: See TracChangeset
for help on using the changeset viewer.