Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/PathRelinkers
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/PathRelinkers/SingleObjectiveTestFunctionPathRelinker.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Optimization.Operators; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 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.