Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/27/12 13:24:36 (12 years ago)
Author:
abeham
Message:

#1614

  • reworked parameterization (one interface for every parameter resp. parameter group)
  • unified parameter descriptions
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/DiscreteLocationCrossover.cs

    r7413 r7419  
    3333  [Item("DiscreteLocationCrossover", "Combines the assignment to locations from various parents.")]
    3434  [StorableClass]
    35   public class DiscreteLocationCrossover : GQAPCrossover, ILocationAwareGQAPOperator {
     35  public class DiscreteLocationCrossover : GQAPCrossover, ICapacitiesAwareGQAPOperator {
    3636
    3737    public ILookupParameter<DoubleArray> CapacitiesParameter {
     
    4545    public DiscreteLocationCrossover()
    4646      : base() {
    47       Parameters.Add(new LookupParameter<DoubleArray>("Capacities", "The capacities vector describes the available space at the locations."));
     47      Parameters.Add(new LookupParameter<DoubleArray>("Capacities", GeneralizedQuadraticAssignmentProblem.CapacitiesDescription));
    4848    }
    4949
Note: See TracChangeset for help on using the changeset viewer.