- Timestamp:
- 03/28/11 15:34:30 (14 years ago)
- Location:
- branches/QAP/HeuristicLab.Problems.QuadraticAssignment/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/QAP/HeuristicLab.Problems.QuadraticAssignment/3.3/Interfaces/IQAPEvaluator.cs
r5598 r5838 28 28 public interface IQAPEvaluator : ISingleObjectiveEvaluator { 29 29 ILookupParameter<Permutation> PermutationParameter { get; } 30 ILookupParameter<DoubleMatrix> DistanceMatrixParameter { get; } 31 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } 30 ILookupParameter<DoubleMatrix> DistancesParameter { get; } 32 31 ILookupParameter<DoubleMatrix> WeightsParameter { get; } 33 32 } -
branches/QAP/HeuristicLab.Problems.QuadraticAssignment/3.3/Interfaces/IQAPMoveEvaluator.cs
r5785 r5838 28 28 public interface IQAPMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator { 29 29 ILookupParameter<Permutation> PermutationParameter { get; } 30 ILookupParameter<DoubleMatrix> Distance MatrixParameter { get; }30 ILookupParameter<DoubleMatrix> DistancesParameter { get; } 31 31 ILookupParameter<DoubleMatrix> WeightsParameter { get; } 32 32 }
Note: See TracChangeset
for help on using the changeset viewer.