- Timestamp:
- 04/25/08 12:13:34 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.StructureIdentification/Recombination/SizeFairCrossOver.cs
r161 r189 223 223 if(possibleParents.Count == 0) throw new InvalidProgramException(); 224 224 // and select a random one 225 IFunctionTree parent = new FunctionTree(possibleParents.ElementAt(random.Next(possibleParents.Count())));225 IFunctionTree parent = possibleParents.ElementAt(random.Next(possibleParents.Count())).GetTreeNode(); 226 226 227 227 int minArity;
Note: See TracChangeset
for help on using the changeset viewer.