Changeset 8327 for branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.TravelingSalesman
- Timestamp:
- 07/25/12 14:28:42 (13 years ago)
- Location:
- branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.TravelingSalesman/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.TravelingSalesman/3.3/Improvers/TSPImprovementOperator.cs
r8319 r8327 37 37 /// The operator tries to improve the traveling salesman solution by swapping two randomly chosen edges for a certain number of times. 38 38 /// </remarks> 39 [Item("TSPImprovementOperator", "An operator that improves traveling salesman solutions. ")]39 [Item("TSPImprovementOperator", "An operator that improves traveling salesman solutions. The operator tries to improve the traveling salesman solution by swapping two randomly chosen edges for a certain number of times.")] 40 40 [StorableClass] 41 41 public sealed class TSPImprovementOperator : SingleSuccessorOperator, ISingleObjectiveImprovementOperator { -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.TravelingSalesman/3.3/PathRelinkers/TSPMultipleGuidesPathRelinker.cs
r8322 r8327 38 38 /// The operator incrementally changes the initiating solution towards the guiding solution by correcting edges as needed. For each city it choses the best edge from all guiding solutions. 39 39 /// </remarks> 40 [Item("TSPMultipleGuidesPathRelinker", "An operator that relinks paths between traveling salesman solutions using a multiple guiding strategy. ")]40 [Item("TSPMultipleGuidesPathRelinker", "An operator that relinks paths between traveling salesman solutions using a multiple guiding strategy. The operator incrementally changes the initiating solution towards the guiding solution by correcting edges as needed. For each city it choses the best edge from all guiding solutions.")] 41 41 [StorableClass] 42 42 public sealed class TSPMultipleGuidesPathRelinker : SingleObjectivePathRelinker { -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.TravelingSalesman/3.3/PathRelinkers/TSPPathRelinker.cs
r8319 r8327 37 37 /// The operator incrementally assimilates the initiating solution into the guiding solution by correcting edges as needed. 38 38 /// </remarks> 39 [Item("TSPPathRelinker", "An operator that relinks paths between traveling salesman solutions. ")]39 [Item("TSPPathRelinker", "An operator that relinks paths between traveling salesman solutions. The operator incrementally assimilates the initiating solution into the guiding solution by correcting edges as needed.")] 40 40 [StorableClass] 41 41 public sealed class TSPPathRelinker : SingleObjectivePathRelinker { -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.TravelingSalesman/3.3/PathRelinkers/TSPSimultaneousPathRelinker.cs
r8319 r8327 37 37 /// The operator incrementally assimilates the initiating solution into the guiding solution and vice versa by correcting edges as needed. 38 38 /// </remarks> 39 [Item("TSPSimultaneousPathRelinker", "An operator that relinks paths between traveling salesman solutions starting from both ends. ")]39 [Item("TSPSimultaneousPathRelinker", "An operator that relinks paths between traveling salesman solutions starting from both ends. The operator incrementally assimilates the initiating solution into the guiding solution and vice versa by correcting edges as needed.")] 40 40 [StorableClass] 41 41 public sealed class TSPSimultaneousPathRelinker : SingleObjectivePathRelinker { -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.TravelingSalesman/3.3/SimilarityCalculators/TSPSimilarityCalculator.cs
r8322 r8327 33 33 /// The operator calculates the similarity based on the number of edges the two solutions have in common. 34 34 /// </remarks> 35 [Item("TSPSimilarityCalculator", "An operator that performs similarity calculation between two traveling salesman solutions. ")]35 [Item("TSPSimilarityCalculator", "An operator that performs similarity calculation between two traveling salesman solutions. The operator calculates the similarity based on the number of edges the two solutions have in common.")] 36 36 public sealed class TSPSimilarityCalculator : SingleObjectiveSolutionSimilarityCalculator { 37 37 private TSPSimilarityCalculator(bool deserializing) : base(deserializing) { }
Note: See TracChangeset
for help on using the changeset viewer.