Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 01:06:17 (14 years ago)
Author:
epitzer
Message:

Merge StorableClassType.Empty into StorableClassType.MarkedOnly and make it the default if not specified (#548)

Location:
trunk/sources/HeuristicLab.Algorithms.TS/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.TS/3.3/TSOperator.cs

    r2997 r3017  
    3333  /// </summary>
    3434  [Item("TSOperator", "An operator which represents a Tabu Search.")]
    35   [StorableClass(StorableClassType.Empty)]
     35  [StorableClass]
    3636  public class TSOperator : AlgorithmOperator {
    3737    #region Parameter properties
  • trunk/sources/HeuristicLab.Algorithms.TS/3.3/TabuListCreator.cs

    r2997 r3017  
    3030namespace HeuristicLab.Algorithms.TS {
    3131  [Item("TabuListCreator", "An operator that creates a new empty tabu list. It can also replace an existing tabu list with a new empty one.")]
    32   [StorableClass(StorableClassType.Empty)]
     32  [StorableClass]
    3333  public class TabuListCreator : SingleSuccessorOperator {
    3434    public ValueLookupParameter<ItemList<IItem>> TabuListParameter {
  • trunk/sources/HeuristicLab.Algorithms.TS/3.3/TabuSelector.cs

    r2997 r3017  
    3737  /// </remarks>
    3838  [Item("TabuSelector", "An operator that selects the best move that is either not tabu or satisfies the aspiration criterion. It expects the move subscopes to be sorted.")]
    39   [StorableClass(StorableClassType.Empty)]
     39  [StorableClass]
    4040  public class TabuSelector : Selector {
    4141    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.