Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 17:08:13 (9 years ago)
Author:
ascheibe
Message:

#2520 added guids to storable classes

Location:
branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3
Files:
5 edited

Legend:

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

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    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]
     30  [StorableClass("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

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3030
    3131namespace HeuristicLab.Algorithms.TabuSearch {
    32   [StorableClass]
     32  [StorableClass("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

    r13173 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3737  [Item("Tabu Search (TS)", "A tabu search algorithm.")]
    3838  [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 120)]
    39   [StorableClass]
     39  [StorableClass("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

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3535  /// </summary>
    3636  [Item("TabuSearchMainLoop", "An operator which represents the main loop of a tabu search.")]
    37   [StorableClass]
     37  [StorableClass("2F824EB2-1EBF-4D3E-95DF-C143AF9947A0")]
    3838  public sealed class TabuSearchMainLoop : AlgorithmOperator {
    3939    #region Parameter properties
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSelector.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    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]
     39  [StorableClass("E2AB280E-8A33-49E7-9B74-A345314C6A94")]
    4040  public class TabuSelector : Selector {
    4141    /// <summary>
Note: See TracChangeset for help on using the changeset viewer.