Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/PathRelinkers
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/PathRelinkers/SingleObjectiveTestFunctionPathRelinker.cs
r16453 r16462 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Fossil; 32 32 33 33 namespace HeuristicLab.Problems.TestFunctions { … … 40 40 /// </remarks> 41 41 [Item("SingleObjectiveTestFunctionPathRelinker", "An operator that relinks paths between test functions solutions. It is based on an implementation described in Duarte, A., Martí, R., and Gortazar, F. (2011). Path Relinking for Large Scale Global Optimization. Soft Computing, Vol. 15.")] 42 [Storable Class]42 [StorableType("BBDCF6E0-AB7F-4A5B-8BFC-A2D2D1E56D5C")] 43 43 public sealed class SingleObjectiveTestFunctionPathRelinker : SingleObjectivePathRelinker { 44 44 #region Parameter properties … … 55 55 56 56 [StorableConstructor] 57 private SingleObjectiveTestFunctionPathRelinker( bool deserializing) : base(deserializing) { }57 private SingleObjectiveTestFunctionPathRelinker(StorableConstructorFlag _) : base(_) { } 58 58 private SingleObjectiveTestFunctionPathRelinker(SingleObjectiveTestFunctionPathRelinker original, Cloner cloner) : base(original, cloner) { } 59 59 public SingleObjectiveTestFunctionPathRelinker()
Note: See TracChangeset
for help on using the changeset viewer.