Changeset 7407 for branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces
- Timestamp:
- 01/24/12 17:23:21 (13 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces
- Files:
-
- 6 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/IGQAPEvaluator.cs
r7319 r7407 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HeuristicLab.Encodings.IntegerVectorEncoding;25 24 using HeuristicLab.Optimization; 26 25 27 26 namespace 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; } 36 29 } 37 30 }
Note: See TracChangeset
for help on using the changeset viewer.