Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/24/12 17:23:21 (12 years ago)
Author:
abeham
Message:

#1614: worked on GQAP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/IGQAPEvaluator.cs

    r7319 r7407  
    2222using HeuristicLab.Core;
    2323using HeuristicLab.Data;
    24 using HeuristicLab.Encodings.IntegerVectorEncoding;
    2524using HeuristicLab.Optimization;
    2625
    2726namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
    28   public interface IGQAPEvaluator : ISingleObjectiveEvaluator {
    29     ILookupParameter<DoubleMatrix> WeightsParameter { get; }
    30     ILookupParameter<DoubleMatrix> DistancesParameter { get; }
    31     ILookupParameter<DoubleMatrix> InstallationCostsParameter { get; }
    32     ILookupParameter<DoubleValue> TransportationCostsParameter { get; }
    33     ILookupParameter<DoubleArray> DemandsParameter { get; }
    34     ILookupParameter<DoubleArray> CapacitiesParameter { get; }
    35     ILookupParameter<IntegerVector> AssignmentParameter { get; }
     27  public interface IGQAPEvaluator : IGQAPEvaluationOperator, ISingleObjectiveEvaluator {
     28    ILookupParameter<DoubleValue> InfeasibilityParameter { get; }
    3629  }
    3730}
Note: See TracChangeset for help on using the changeset viewer.