Free cookie consent management tool by TermsFeed Policy Generator

Changeset 161


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

added description of SizeFairCrossOver

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.StructureIdentification/Recombination/SizeFairCrossOver.cs

    r158 r161  
    3636    public override string Description {
    3737      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.
     39And replaces the branch with root N0 in P0 with N1 from P1 if the tree-size limits are not violated.
     40When recombination with N0 and N1 would create a tree that is too large the operator randomly either goes
     41up in P0 (parent of N0) or down in P1 (random child of N1) until a valid configuration is found.";
    3942      }
    4043    }
Note: See TracChangeset for help on using the changeset viewer.