Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/02/12 18:59:15 (12 years ago)
Author:
jkarder
Message:

#1899: applied the changes suggested by ascheibe in comment:6:ticket:1899

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/TSPPopulationDiversityAnalyzer.cs

    r7259 r8720  
    2020#endregion
    2121
     22using System;
    2223using HeuristicLab.Analysis;
    2324using HeuristicLab.Common;
     
    2526using HeuristicLab.Encodings.PermutationEncoding;
    2627using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HeuristicLab.PluginInfrastructure;
    2729
    2830namespace HeuristicLab.Problems.TravelingSalesman {
     31  // BackwardsCompatibility3.3
     32  #region Backwards compatible code, remove with 3.4
    2933  /// <summary>
    3034  /// An operator for analyzing the diversity of solutions of Traveling Salesman Problems given in path representation.
    3135  /// </summary>
     36  [Obsolete]
     37  [NonDiscoverableType]
    3238  [Item("TSPPopulationDiversityAnalyzer", "An operator for analyzing the diversity of solutions of Traveling Salesman Problems given in path representation.")]
    3339  [StorableClass]
     
    7985    }
    8086  }
     87  #endregion
    8188}
Note: See TracChangeset for help on using the changeset viewer.