Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/19/10 04:56:06 (15 years ago)
Author:
swagner
Message:

Continued to implement TSP tour visualization (#924)

Location:
trunk/sources/HeuristicLab.Problems.TSP/3.3/Interfaces
Files:
1 added
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.TSP/3.3/Interfaces/IPathCoordinatesTSPSolutionsVisualizer.cs

    r3106 r3107  
    2525namespace HeuristicLab.Problems.TSP {
    2626  /// <summary>
    27   /// An interface which represents an operator for visualizing tours of Traveling Salesman Problems given in path representation.
     27  /// An interface which represents an operator for visualizing tours of Traveling Salesman Problems given in path representation using city coordinates.
    2828  /// </summary>
    29   public interface IPathTSPTourVisualizer : ITSPTourVisualizer {
    30     ILookupParameter<Permutation> PermutationParameter { get; }
     29  public interface IPathCoordinatesTSPSolutionsVisualizer : ICoordinatesTSPSolutionsVisualizer {
     30    ILookupParameter<ItemArray<Permutation>> PermutationParameter { get; }
    3131  }
    3232}
  • trunk/sources/HeuristicLab.Problems.TSP/3.3/Interfaces/ITSPSolutionsVisualizer.cs

    r3106 r3107  
    2020#endregion
    2121
    22 using HeuristicLab.Core;
    23 using HeuristicLab.Data;
    2422using HeuristicLab.Optimization;
    2523
    2624namespace HeuristicLab.Problems.TSP {
    2725  /// <summary>
    28   /// An interface which represents an operator for visualizing tours of Traveling Salesman Problems.
     26  /// An interface which represents an operator for visualizing solutions of Traveling Salesman Problems.
    2927  /// </summary>
    30   public interface ITSPTourVisualizer : ISolutionVisualizer {
    31     ILookupParameter<DoubleMatrix> CoordinatesParameter { get; }
    32   }
     28  public interface ITSPSolutionsVisualizer : ISingleObjectiveSolutionsVisualizer { }
    3329}
Note: See TracChangeset for help on using the changeset viewer.