- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.TestFunctions
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/BoothEvaluator.cs
r15584 r17097 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. … … 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Encodings.RealVectorEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.TestFunctions { … … 32 32 /// </summary> 33 33 [Item("BoothEvaluator", "Evaluates the Booth function on a given point. The optimum of this function is 0 at (1,3). It is implemented as described on http://www-optima.amp.i.kyoto-u.ac.jp/member/student/hedar/Hedar_files/TestGO_files/Page816.htm, last accessed April 12th, 2010.")] 34 [Storable Class]34 [StorableType("3D0027F9-FC7B-4C34-8766-93C4A467767A")] 35 35 public class BoothEvaluator : SingleObjectiveTestFunctionProblemEvaluator { 36 36 public override string FunctionName { get { return "Booth"; } } … … 67 67 68 68 [StorableConstructor] 69 protected BoothEvaluator( bool deserializing) : base(deserializing) { }69 protected BoothEvaluator(StorableConstructorFlag _) : base(_) { } 70 70 protected BoothEvaluator(BoothEvaluator original, Cloner cloner) : base(original, cloner) { } 71 71 public BoothEvaluator() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.