Changeset 161
- Timestamp:
- 04/22/08 20:09:58 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.StructureIdentification/Recombination/SizeFairCrossOver.cs
r158 r161 36 36 public override string Description { 37 37 get { 38 return "TASK"; 38 return @"Takes two parent individuals P0 and P1 each. Selects a random node N0 of P0 and a random node N1 of P1. 39 And replaces the branch with root N0 in P0 with N1 from P1 if the tree-size limits are not violated. 40 When recombination with N0 and N1 would create a tree that is too large the operator randomly either goes 41 up in P0 (parent of N0) or down in P1 (random child of N1) until a valid configuration is found."; 39 42 } 40 43 }
Note: See TracChangeset
for help on using the changeset viewer.