- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- 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 28 28 namespace HeuristicLab.Algorithms.TabuSearch { 29 29 [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 [Storable Class("D54FDEA4-D7CF-4508-A807-181EF84A43D4")]30 [StorableType("D54FDEA4-D7CF-4508-A807-181EF84A43D4")] 31 31 public class TabuListCreator : SingleSuccessorOperator { 32 32 public ValueLookupParameter<ItemList<IItem>> TabuListParameter { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuNeighborhoodAnalyzer.cs
r13368 r14711 30 30 31 31 namespace HeuristicLab.Algorithms.TabuSearch { 32 [Storable Class("BFF359BA-239E-4174-9EF8-5B965B35FF7A")]32 [StorableType("BFF359BA-239E-4174-9EF8-5B965B35FF7A")] 33 33 [Item("TabuNeighborhoodAnalyzer", "Analyzes the tabu neighborhood")] 34 34 public class TabuNeighborhoodAnalyzer : SingleSuccessorOperator, IAnalyzer { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearch.cs
r13368 r14711 37 37 [Item("Tabu Search (TS)", "A tabu search algorithm.")] 38 38 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 120)] 39 [Storable Class("9E077A6F-EB6A-4542-A99F-6D0C3F7D3BFB")]39 [StorableType("9E077A6F-EB6A-4542-A99F-6D0C3F7D3BFB")] 40 40 public sealed class TabuSearch : HeuristicOptimizationEngineAlgorithm, IStorableContent { 41 41 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearchMainLoop.cs
r13368 r14711 35 35 /// </summary> 36 36 [Item("TabuSearchMainLoop", "An operator which represents the main loop of a tabu search.")] 37 [Storable Class("2F824EB2-1EBF-4D3E-95DF-C143AF9947A0")]37 [StorableType("2F824EB2-1EBF-4D3E-95DF-C143AF9947A0")] 38 38 public sealed class TabuSearchMainLoop : AlgorithmOperator { 39 39 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSelector.cs
r13368 r14711 37 37 /// </remarks> 38 38 [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 [Storable Class("E2AB280E-8A33-49E7-9B74-A345314C6A94")]39 [StorableType("E2AB280E-8A33-49E7-9B74-A345314C6A94")] 40 40 public class TabuSelector : Selector { 41 41 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.