- Timestamp:
- 07/07/19 23:40:10 (6 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/BealeEvaluator.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 { … … 33 33 /// </summary> 34 34 [Item("BealeEvaluator", "Evaluates the Beale function on a given point. The optimum of this function is 0 at (3,0.5). It is implemented as described in Moré, J.J., Garbow, B., and Hillstrom, K. 1981. Testing unconstrained optimization software. ACM Transactions on Mathematical Software 7, pp. 136-140, ACM.")] 35 [Storable Class]35 [StorableType("EC1E155C-65ED-4603-A442-357ECC1E8F3D")] 36 36 public class BealeEvaluator : SingleObjectiveTestFunctionProblemEvaluator { 37 37 public override string FunctionName { get { return "Beale"; } } … … 68 68 69 69 [StorableConstructor] 70 protected BealeEvaluator( bool deserializing) : base(deserializing) { }70 protected BealeEvaluator(StorableConstructorFlag _) : base(_) { } 71 71 protected BealeEvaluator(BealeEvaluator original, Cloner cloner) : base(original, cloner) { } 72 72 public BealeEvaluator() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.