- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.Orienteering/3.3
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.Orienteering/3.3/Creators/GreedyOrienteeringTourCreator.cs
r12721 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 39 39 /// </summary> 40 40 [Item("GreedyOrienteeringTourCreator", @"Implements the solution creation procedure described in Schilde M., Doerner K.F., Hartl R.F., Kiechle G. 2009. Metaheuristics for the bi-objective orienteering problem. Swarm Intelligence, Volume 3, Issue 3, pp 179-201.")] 41 [StorableClass ]41 [StorableClass("00F4F448-4257-46B4-ADE5-5CE3FBD7EC22")] 42 42 public sealed class GreedyOrienteeringTourCreator : IntegerVectorCreator, IOrienteeringSolutionCreator { 43 43 public override bool CanChangeName { get { return false; } } -
branches/PersistenceOverhaul/HeuristicLab.Problems.Orienteering/3.3/DistanceMatrix.cs
r12721 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 32 32 /// </summary> 33 33 [Item("DistanceMatrix", "Represents a distance matrix of a Orienteering Problem.")] 34 [StorableClass ]34 [StorableClass("2C974D9A-2E29-4274-A1BF-C4117AE7EB50")] 35 35 public sealed class DistanceMatrix : DoubleMatrix { 36 36 [StorableConstructor] -
branches/PersistenceOverhaul/HeuristicLab.Problems.Orienteering/3.3/Evaluators/OrienteeringEvaluator.cs
r12721 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 namespace HeuristicLab.Problems.Orienteering { 32 32 [Item("OrienteeringEvaluator", "Operator to evaluate a solution to the orienteering problem.")] 33 [StorableClass ]33 [StorableClass("95CD4CF5-0EA3-47D7-B233-7700BE85FDBD")] 34 34 public class OrienteeringEvaluator : InstrumentedOperator, IOrienteeringEvaluator { 35 35 -
branches/PersistenceOverhaul/HeuristicLab.Problems.Orienteering/3.3/Improvers/OrienteeringLocalImprovementOperator.cs
r12721 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 38 38 /// </summary> 39 39 [Item("OrienteeringLocalImprovementOperator", @"Implements the iterative improvement procedure described in Schilde M., Doerner K.F., Hartl R.F., Kiechle G. 2009. Metaheuristics for the bi-objective orienteering problem. Swarm Intelligence, Volume 3, Issue 3, pp 179-201.")] 40 [StorableClass ]40 [StorableClass("00A4C0F4-5EBF-427D-BBDE-C237E480F40A")] 41 41 public sealed class OrienteeringLocalImprovementOperator : SingleSuccessorOperator, ILocalImprovementOperator { 42 42 -
branches/PersistenceOverhaul/HeuristicLab.Problems.Orienteering/3.3/OrienteeringProblem.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) … … 36 36 [Item("Orienteering Problem (OP)", "Represents a single-objective Orienteering Problem.")] 37 37 [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 115)] 38 [StorableClass ]38 [StorableClass("DAD06970-E491-41FA-8164-E5EAADE477BA")] 39 39 public sealed class OrienteeringProblem 40 40 : SingleObjectiveHeuristicOptimizationProblem<IOrienteeringEvaluator, IOrienteeringSolutionCreator>, -
branches/PersistenceOverhaul/HeuristicLab.Problems.Orienteering/3.3/OrienteeringSolution.cs
r12721 r13368 30 30 namespace HeuristicLab.Problems.Orienteering { 31 31 [Item("OrienteeringSolution", "Represents a Orienteering solution which can be visualized in the GUI.")] 32 [StorableClass ]32 [StorableClass("5D66FA92-DB58-4249-8579-5C6C27B77AA1")] 33 33 public sealed class OrienteeringSolution : Item { 34 34 public static new Image StaticItemImage { -
branches/PersistenceOverhaul/HeuristicLab.Problems.Orienteering/3.3/Shakers/OrienteeringShakingOperator.cs
r12721 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 48 48 /// </summary> 49 49 [Item("OrienteeringShakingOperator", @"Implements the shaking procedure described in Schilde M., Doerner K.F., Hartl R.F., Kiechle G. 2009. Metaheuristics for the bi-objective orienteering problem. Swarm Intelligence, Volume 3, Issue 3, pp 179-201.")] 50 [StorableClass ]50 [StorableClass("5E30D3AC-CDDB-47A8-B19F-B6A2F8405753")] 51 51 public sealed class OrienteeringShakingOperator : SingleSuccessorOperator, IMultiNeighborhoodShakingOperator, IStochasticOperator { 52 52
Note: See TracChangeset
for help on using the changeset viewer.