Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/17 11:41:43 (7 years ago)
Author:
gkronber
Message:

#2520

  • renamed StorableClass -> StorableType
  • changed persistence to use GUIDs instead of type names
Location:
branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuListCreator.cs

    r13368 r14711  
    2828namespace HeuristicLab.Algorithms.TabuSearch {
    2929  [Item("TabuListCreator", "An operator that creates a new empty tabu list. It can also replace an existing tabu list with a new empty one.")]
    30   [StorableClass("D54FDEA4-D7CF-4508-A807-181EF84A43D4")]
     30  [StorableType("D54FDEA4-D7CF-4508-A807-181EF84A43D4")]
    3131  public class TabuListCreator : SingleSuccessorOperator {
    3232    public ValueLookupParameter<ItemList<IItem>> TabuListParameter {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuNeighborhoodAnalyzer.cs

    r13368 r14711  
    3030
    3131namespace HeuristicLab.Algorithms.TabuSearch {
    32   [StorableClass("BFF359BA-239E-4174-9EF8-5B965B35FF7A")]
     32  [StorableType("BFF359BA-239E-4174-9EF8-5B965B35FF7A")]
    3333  [Item("TabuNeighborhoodAnalyzer", "Analyzes the tabu neighborhood")]
    3434  public class TabuNeighborhoodAnalyzer : SingleSuccessorOperator, IAnalyzer {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearch.cs

    r13368 r14711  
    3737  [Item("Tabu Search (TS)", "A tabu search algorithm.")]
    3838  [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 120)]
    39   [StorableClass("9E077A6F-EB6A-4542-A99F-6D0C3F7D3BFB")]
     39  [StorableType("9E077A6F-EB6A-4542-A99F-6D0C3F7D3BFB")]
    4040  public sealed class TabuSearch : HeuristicOptimizationEngineAlgorithm, IStorableContent {
    4141    public string Filename { get; set; }
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearchMainLoop.cs

    r13368 r14711  
    3535  /// </summary>
    3636  [Item("TabuSearchMainLoop", "An operator which represents the main loop of a tabu search.")]
    37   [StorableClass("2F824EB2-1EBF-4D3E-95DF-C143AF9947A0")]
     37  [StorableType("2F824EB2-1EBF-4D3E-95DF-C143AF9947A0")]
    3838  public sealed class TabuSearchMainLoop : AlgorithmOperator {
    3939    #region Parameter properties
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSelector.cs

    r13368 r14711  
    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 by the qualities of the moves (the best move is first).")]
    39   [StorableClass("E2AB280E-8A33-49E7-9B74-A345314C6A94")]
     39  [StorableType("E2AB280E-8A33-49E7-9B74-A345314C6A94")]
    4040  public class TabuSelector : Selector {
    4141    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.