Changeset 13403 for branches/ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Functions/Matyas.cs
- Timestamp:
- 11/25/15 23:24:01 (9 years ago)
- Location:
- branches/ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Functions
- Files:
-
- 1 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Problems.TestFunctions/3.3/Functions/Matyas.cs
r13393 r13403 31 31 /// The Matyas function is implemented as described on http://www-optima.amp.i.kyoto-u.ac.jp/member/student/hedar/Hedar_files/TestGO_files/Page2213.htm, last accessed April 12th, 2010. 32 32 /// </summary> 33 [Item("Matyas Evaluator", "Evaluates the Matyas function on a given point. The optimum of this function is 0 at the origin. It is implemented as described on http://www-optima.amp.i.kyoto-u.ac.jp/member/student/hedar/Hedar_files/TestGO_files/Page2213.htm, last accessed April 12th, 2010.")]33 [Item("Matyas", "Evaluates the Matyas function on a given point. The optimum of this function is 0 at the origin. It is implemented as described on http://www-optima.amp.i.kyoto-u.ac.jp/member/student/hedar/Hedar_files/TestGO_files/Page2213.htm, last accessed April 12th, 2010.")] 34 34 [StorableClass] 35 public class MatyasEvaluator : SingleObjectiveTestFunctionProblemEvaluator { 36 public override string FunctionName { get { return "Matyas"; } } 35 public class Matyas : SingleObjectiveTestFunction { 37 36 /// <summary> 38 37 /// Returns false as the Matyas function is a minimization problem. … … 67 66 68 67 [StorableConstructor] 69 protected Matyas Evaluator(bool deserializing) : base(deserializing) { }70 protected Matyas Evaluator(MatyasEvaluatororiginal, Cloner cloner) : base(original, cloner) { }71 public Matyas Evaluator() : base() { }68 protected Matyas(bool deserializing) : base(deserializing) { } 69 protected Matyas(Matyas original, Cloner cloner) : base(original, cloner) { } 70 public Matyas() : base() { } 72 71 73 72 public override IDeepCloneable Clone(Cloner cloner) { 74 return new Matyas Evaluator(this, cloner);73 return new Matyas(this, cloner); 75 74 } 76 75
Note: See TracChangeset
for help on using the changeset viewer.