Free cookie consent management tool by TermsFeed Policy Generator

Changeset 158


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

fixed ticket #110

Location:
trunk/sources/HeuristicLab.StructureIdentification
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.StructureIdentification/HeuristicLab.StructureIdentification.csproj

    r155 r158  
    7070    <Compile Include="Properties\AssemblyInfo.cs" />
    7171    <Compile Include="RandomTreeCreator.cs" />
    72     <Compile Include="Recombination\SinglePointCrossOver.cs" />
     72    <Compile Include="Recombination\SizeFairCrossOver.cs" />
    7373    <Compile Include="TreeGardener.cs" />
    7474    <Compile Include="StructIdProblemInjector.cs" />
  • trunk/sources/HeuristicLab.StructureIdentification/Recombination/SizeFairCrossOver.cs

    r156 r158  
    3232
    3333namespace HeuristicLab.StructureIdentification {
    34   public class SinglePointCrossOver : OperatorBase {
     34  public class SizeFairCrossOver : OperatorBase {
    3535
    3636    public override string Description {
     
    3939      }
    4040    }
    41     public SinglePointCrossOver()
     41    public SizeFairCrossOver()
    4242      : base() {
    4343      AddVariableInfo(new VariableInfo("Random", "Pseudo random number generator", typeof(MersenneTwister), VariableKind.In));
Note: See TracChangeset for help on using the changeset viewer.