Changeset 3107 for trunk/sources/HeuristicLab.Problems.TSP/3.3/Interfaces
- Timestamp:
- 03/19/10 04:56:06 (15 years ago)
- 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 25 25 namespace HeuristicLab.Problems.TSP { 26 26 /// <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. 28 28 /// </summary> 29 public interface IPath TSPTourVisualizer : ITSPTourVisualizer {30 ILookupParameter< Permutation> PermutationParameter { get; }29 public interface IPathCoordinatesTSPSolutionsVisualizer : ICoordinatesTSPSolutionsVisualizer { 30 ILookupParameter<ItemArray<Permutation>> PermutationParameter { get; } 31 31 } 32 32 } -
trunk/sources/HeuristicLab.Problems.TSP/3.3/Interfaces/ITSPSolutionsVisualizer.cs
r3106 r3107 20 20 #endregion 21 21 22 using HeuristicLab.Core;23 using HeuristicLab.Data;24 22 using HeuristicLab.Optimization; 25 23 26 24 namespace HeuristicLab.Problems.TSP { 27 25 /// <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. 29 27 /// </summary> 30 public interface ITSPTourVisualizer : ISolutionVisualizer { 31 ILookupParameter<DoubleMatrix> CoordinatesParameter { get; } 32 } 28 public interface ITSPSolutionsVisualizer : ISingleObjectiveSolutionsVisualizer { } 33 29 }
Note: See TracChangeset
for help on using the changeset viewer.