- Timestamp:
- 10/02/12 18:59:15 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/TSPPopulationDiversityAnalyzer.cs
r7259 r8720 20 20 #endregion 21 21 22 using System; 22 23 using HeuristicLab.Analysis; 23 24 using HeuristicLab.Common; … … 25 26 using HeuristicLab.Encodings.PermutationEncoding; 26 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HeuristicLab.PluginInfrastructure; 27 29 28 30 namespace HeuristicLab.Problems.TravelingSalesman { 31 // BackwardsCompatibility3.3 32 #region Backwards compatible code, remove with 3.4 29 33 /// <summary> 30 34 /// An operator for analyzing the diversity of solutions of Traveling Salesman Problems given in path representation. 31 35 /// </summary> 36 [Obsolete] 37 [NonDiscoverableType] 32 38 [Item("TSPPopulationDiversityAnalyzer", "An operator for analyzing the diversity of solutions of Traveling Salesman Problems given in path representation.")] 33 39 [StorableClass] … … 79 85 } 80 86 } 87 #endregion 81 88 }
Note: See TracChangeset
for help on using the changeset viewer.