Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/15 18:30:26 (9 years ago)
Author:
apolidur
Message:

#2221: Small refactoring and code cleaning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PTSP/HeuristicLab.Problems.PTSP/3.3/Interfaces/IPTSPMoveEvaluator.cs

    r12191 r12380  
    2020#endregion
    2121
     22using HeuristicLab.Core;
     23using HeuristicLab.Data;
     24using HeuristicLab.Encodings.PermutationEncoding;
     25using HeuristicLab.Optimization;
    2226using System;
    23 using HeuristicLab.Optimization;
    2427
    2528namespace HeuristicLab.Problems.PTSP {
    26   public interface IPTSPMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator {
     29  public interface IPTSPMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator, IPermutationMoveOperator {
    2730    Type EvaluatorType { get; }
     31    ILookupParameter<DoubleMatrix> CoordinatesParameter { get; }
     32    ILookupParameter<DistanceMatrix> DistanceMatrixParameter { get; }
     33    ILookupParameter<BoolValue> UseDistanceMatrixParameter { get; }
     34
    2835  }
    2936}
Note: See TracChangeset for help on using the changeset viewer.