Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3910


Ignore:
Timestamp:
06/09/10 12:22:18 (14 years ago)
Author:
abeham
Message:

#1034

  • Changed default actual name's of crossovers to the default name of the respective solution creator
Location:
trunk/sources
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/BinaryVectorCrossover.cs

    r3659 r3910  
    5252      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators."));
    5353      Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("Parents", "The parent vectors which should be crossed."));
     54      ParentsParameter.ActualName = "BinaryVector";
    5455      Parameters.Add(new LookupParameter<BinaryVector>("Child", "The child vector resulting from the crossover."));
     56      ChildParameter.ActualName = "BinaryVector";
    5557    }
    5658
  • trunk/sources/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorCrossover.cs

    r3659 r3910  
    5252      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators."));
    5353      Parameters.Add(new ScopeTreeLookupParameter<IntegerVector>("Parents", "The parent vectors which should be crossed."));
     54      ParentsParameter.ActualName = "IntegerVector";
    5455      Parameters.Add(new LookupParameter<IntegerVector>("Child", "The child vector resulting from the crossover."));
     56      ChildParameter.ActualName = "IntegerVector";
    5557    }
    5658
  • trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorCrossover.cs

    r3659 r3910  
    5656      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators."));
    5757      Parameters.Add(new ScopeTreeLookupParameter<RealVector>("Parents", "The parent vectors which should be crossed."));
     58      ParentsParameter.ActualName = "RealVector";
    5859      Parameters.Add(new LookupParameter<RealVector>("Child", "The child vector resulting from the crossover."));
     60      ChildParameter.ActualName = "RealVector";
    5961      Parameters.Add(new ValueLookupParameter<DoubleMatrix>("Bounds", "The lower and upper bounds of the real vector."));
    6062    }
Note: See TracChangeset for help on using the changeset viewer.