Changeset 3658 for trunk/sources/HeuristicLab.Problems.TravelingSalesman
- Timestamp:
- 05/05/10 23:27:50 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/BestTSPSolutionAnalyzer.cs
r3635 r3658 36 36 [Item("BestTSPSolutionAnalyzer", "An operator for analyzing the best solution of Traveling Salesman Problems given in path representation using city coordinates.")] 37 37 [StorableClass] 38 public sealed class BestTSPSolutionAnalyzer : SingleSuccessorOperator, IBestTSPSolutionAnalyzer, I SolutionAnalyzer {38 public sealed class BestTSPSolutionAnalyzer : SingleSuccessorOperator, IBestTSPSolutionAnalyzer, IAnalyzer { 39 39 public ILookupParameter<DoubleMatrix> CoordinatesParameter { 40 40 get { return (ILookupParameter<DoubleMatrix>)Parameters["Coordinates"]; } -
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/MultiPopulationBestTSPSolutionAnalyzer.cs
r3635 r3658 38 38 [Item("MultiPopulationBestTSPSolutionAnalyzer", "An operator for analyzing the best solution of Traveling Salesman Problems given in path representation using city coordinates.")] 39 39 [StorableClass] 40 public sealed class MultiPopulationBestTSPSolutionAnalyzer : SingleSuccessorOperator, IBestTSPSolutionAnalyzer, I MultiPopulationAnalyzer {40 public sealed class MultiPopulationBestTSPSolutionAnalyzer : SingleSuccessorOperator, IBestTSPSolutionAnalyzer, IAnalyzer { 41 41 public ILookupParameter<DoubleMatrix> CoordinatesParameter { 42 42 get { return (ILookupParameter<DoubleMatrix>)Parameters["Coordinates"]; } -
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/PopulationBestTSPSolutionAnalyzer.cs
r3635 r3658 36 36 [Item("PopulationBestTSPSolutionAnalyzer", "An operator for analyzing the best solution of Traveling Salesman Problems given in path representation using city coordinates.")] 37 37 [StorableClass] 38 public sealed class PopulationBestTSPSolutionAnalyzer : SingleSuccessorOperator, IBestTSPSolutionAnalyzer, I PopulationAnalyzer {38 public sealed class PopulationBestTSPSolutionAnalyzer : SingleSuccessorOperator, IBestTSPSolutionAnalyzer, IAnalyzer { 39 39 public ILookupParameter<DoubleMatrix> CoordinatesParameter { 40 40 get { return (ILookupParameter<DoubleMatrix>)Parameters["Coordinates"]; }
Note: See TracChangeset
for help on using the changeset viewer.