Changeset 13368 for branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves
- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMove.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) … … 26 26 namespace HeuristicLab.Encodings.RealVectorEncoding { 27 27 [Item("AdditiveMove", "A move on a real vector that that represents an additive change in one dimension.")] 28 [StorableClass ]28 [StorableClass("638D2CA0-FE54-4161-ADBA-E091F621CDBD")] 29 29 public class AdditiveMove : Item { 30 30 [Storable] -
branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMoveGenerator.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) … … 30 30 namespace HeuristicLab.Encodings.RealVectorEncoding { 31 31 [Item("AdditiveMoveGenerator", "Base class for all additive move generators.")] 32 [StorableClass ]32 [StorableClass("E890C9C9-C20B-4333-AE9D-9AE350A8EEA6")] 33 33 public abstract class AdditiveMoveGenerator : SingleSuccessorOperator, IAdditiveRealVectorMoveOperator, IMoveGenerator, IStochasticOperator { 34 34 public override bool CanChangeName { -
branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMoveMaker.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) … … 30 30 namespace HeuristicLab.Encodings.RealVectorEncoding { 31 31 [Item("AdditiveMoveMaker", "Peforms an additive move on a given real vector and updates the quality.")] 32 [StorableClass ]32 [StorableClass("7519F001-7037-4FC8-998B-24D2456E134F")] 33 33 public class AdditiveMoveMaker : SingleSuccessorOperator, IAdditiveRealVectorMoveOperator, IMoveMaker, ISingleObjectiveOperator { 34 34 public override bool CanChangeName { -
branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMoveTabuAttribute.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) … … 26 26 namespace HeuristicLab.Encodings.RealVectorEncoding { 27 27 [Item("AdditiveMoveTabuAttribute", "Tabu attribute for additive moves.")] 28 [StorableClass ]28 [StorableClass("09C7B9C7-7972-4661-B296-1EADB12CA56C")] 29 29 public class AdditiveMoveTabuAttribute : Item { 30 30 [Storable] -
branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMoveTabuChecker.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 namespace HeuristicLab.Encodings.RealVectorEncoding { 32 32 [Item("AdditiveMoveTabuChecker", "Prevents falling back into ranges that have been moved over before.")] 33 [StorableClass ]33 [StorableClass("30A69FFF-9466-43DE-AE31-FF0231DBCFEF")] 34 34 public class AdditiveMoveTabuChecker : SingleSuccessorOperator, IAdditiveRealVectorMoveOperator, ITabuChecker { 35 35 public override bool CanChangeName { -
branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/AdditiveMoveTabuMaker.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) … … 28 28 namespace HeuristicLab.Encodings.RealVectorEncoding { 29 29 [Item("AdditiveMoveTabuMaker", "Sets the move tabu.")] 30 [StorableClass ]30 [StorableClass("2ECDAD97-0EE5-4CB4-A9DC-4B9AC0CE1372")] 31 31 public class AdditiveMoveTabuMaker : TabuMaker, IAdditiveRealVectorMoveOperator { 32 32 public ILookupParameter<AdditiveMove> AdditiveMoveParameter { -
branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/StochasticNormalMultiMoveGenerator.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) … … 30 30 namespace HeuristicLab.Encodings.RealVectorEncoding { 31 31 [Item("StochasticNormalMultiMoveGenerator", "Generates normal distributed moves from a given real vector.")] 32 [StorableClass ]32 [StorableClass("F8D689F6-6CF2-4896-9109-E9A6CCDF9AF4")] 33 33 public class StochasticNormalMultiMoveGenerator : AdditiveMoveGenerator, IMultiMoveGenerator { 34 34 public IValueLookupParameter<DoubleValue> SigmaParameter { -
branches/PersistenceOverhaul/HeuristicLab.Encodings.RealVectorEncoding/3.3/Moves/StochasticPolynomialMultiMoveGenerator.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) … … 29 29 namespace HeuristicLab.Encodings.RealVectorEncoding { 30 30 [Item("StochasticPolynomialMultiMoveGenerator", "Generates polynomial moves from a given real vector.")] 31 [StorableClass ]31 [StorableClass("E3794FEB-061E-4031-AB82-7AC9B675BCAB")] 32 32 public class StochasticPolynomialMultiMoveGenerator : AdditiveMoveGenerator, IMultiMoveGenerator { 33 33 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.