- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.ScatterSearch/3.3
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.ScatterSearch/3.3/OffspringProcessor.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 31 31 /// </summary> 32 32 [Item("OffspringProcessor", "An operator that creates a subscope with subscopes for every variable in the current scope.")] 33 [StorableClass ]33 [StorableClass("F04B66DE-15CD-40AA-9EA5-143D81BBDAB1")] 34 34 public sealed class OffspringProcessor : SingleSuccessorOperator { 35 35 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.ScatterSearch/3.3/PopulationRebuildMethod.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 34 34 /// </summary> 35 35 [Item("PopulationRebuildMethod", "An operator that updates the reference set and rebuilds the population.")] 36 [StorableClass ]36 [StorableClass("B019C774-EBFF-4D12-97AD-AC0EE5970114")] 37 37 public sealed class PopulationRebuildMethod : SingleSuccessorOperator, ISingleObjectiveOperator { 38 38 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.ScatterSearch/3.3/ReferenceSetUpdateMethod.cs
r12069 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 35 35 /// </summary> 36 36 [Item("ReferenceSetUpdateMethod", "An operator that updates the reference set.")] 37 [StorableClass ]37 [StorableClass("58A2D60A-7B48-4C63-AB6F-CB500DC8D324")] 38 38 public sealed class ReferenceSetUpdateMethod : SingleSuccessorOperator { 39 39 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.ScatterSearch/3.3/ScatterSearch.cs
r13173 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 40 40 [Item("Scatter Search (SS)", "A scatter search algorithm.")] 41 41 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 500)] 42 [StorableClass ]42 [StorableClass("25F04931-BC61-4940-AEA8-C826AFC47DF7")] 43 43 public sealed class ScatterSearch : HeuristicOptimizationEngineAlgorithm, IStorableContent { 44 44 public string Filename { get; set; } -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.ScatterSearch/3.3/ScatterSearchMainLoop.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 35 35 /// </summary> 36 36 [Item("ScatterSearchMainLoop", "An operator which represents a scatter search.")] 37 [StorableClass ]37 [StorableClass("19490563-1886-4CA3-9293-AD8C4BA617A5")] 38 38 public sealed class ScatterSearchMainLoop : AlgorithmOperator { 39 39 #region Parameter properties -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.ScatterSearch/3.3/SolutionPoolUpdateMethod.cs
r12069 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 35 35 /// </summary> 36 36 [Item("SolutionPoolUpdateMethod", "An operator that updates the solution pool.")] 37 [StorableClass ]37 [StorableClass("9F0DE52E-CA1A-488F-AEFE-07C107AAFC80")] 38 38 public sealed class SolutionPoolUpdateMethod : SingleSuccessorOperator, ISingleObjectiveOperator { 39 39 #region Parameter properties
Note: See TracChangeset
for help on using the changeset viewer.