Changeset 3107 for trunk/sources/HeuristicLab.Problems.TSP/3.3/Interfaces/ITSPSolutionsVisualizer.cs
- Timestamp:
- 03/19/10 04:56:06 (15 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
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.