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/Interfaces/IGQAPLocalImprovementOperator.cs

    r7412 r7419  
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Data;
    24 using HeuristicLab.Encodings.IntegerVectorEncoding;
    2524using HeuristicLab.Optimization;
    2625
    2726namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
    28   public interface IGQAPLocalImprovementOperator : IGQAPOperator, ILocalImprovementOperator {
    29     ILookupParameter<DoubleValue> QualityParameter { get; }
    30     ILookupParameter<DoubleValue> FlowDistanceQualityParameter { get; }
    31     ILookupParameter<DoubleValue> InstallationQualityParameter { get; }
    32     ILookupParameter<DoubleValue> OverbookedCapacityParameter { get; }
     27  public interface IGQAPLocalImprovementOperator : ILocalImprovementOperator {
    3328    IValueLookupParameter<IntValue> MaximumCandidateListSizeParameter { get; }
    34     IValueLookupParameter<IntValue> MaximumSampleSizeParameter { get; }
    35     ILookupParameter<IntegerVector> AssignmentParameter { get; }
    36     ILookupParameter<DoubleMatrix> WeightsParameter { get; }
    37     ILookupParameter<DoubleMatrix> DistancesParameter { get; }
    38     ILookupParameter<DoubleMatrix> InstallationCostsParameter { get; }
    39     ILookupParameter<DoubleArray> DemandsParameter { get; }
    40     ILookupParameter<DoubleArray> CapacitiesParameter { get; }
    41     IValueLookupParameter<DoubleValue> TransportationCostsParameter { get; }
    42     IValueLookupParameter<DoubleValue> OverbookedCapacityPenaltyParameter { get; }
    4329  }
    4430}
Note: See TracChangeset for help on using the changeset viewer.