[7128] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Problems.TestFunctions.Evaluators {
|
---|
| 30 | [Item("CustomEvaluator", "Evaluates a custom test fuction.")]
|
---|
| 31 | [StorableClass]
|
---|
| 32 | public class CustomEvaluator : SingleObjectiveTestFunctionProblemEvaluator {
|
---|
| 33 |
|
---|
[9984] | 34 | public override string FunctionName {
|
---|
| 35 | get { return "sin(x^y)"; }
|
---|
| 36 | }
|
---|
[7128] | 37 |
|
---|
| 38 | [StorableConstructor]
|
---|
| 39 | protected CustomEvaluator(bool deserializing) : base(deserializing) { }
|
---|
| 40 | protected CustomEvaluator(CustomEvaluator original, Cloner cloner) : base(original, cloner) { }
|
---|
| 41 | public CustomEvaluator() { }
|
---|
| 42 |
|
---|
| 43 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 44 | return new CustomEvaluator(this, cloner);
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | public override bool Maximization {
|
---|
| 48 | get { return false; }
|
---|
| 49 | }
|
---|
| 50 |
|
---|
| 51 | public override DoubleMatrix Bounds {
|
---|
| 52 | get { return new DoubleMatrix(new double[,] { { 0, 5 } }); }
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | public override double BestKnownQuality {
|
---|
| 56 | get {
|
---|
| 57 | return -1;
|
---|
| 58 | }
|
---|
| 59 | }
|
---|
| 60 |
|
---|
[9984] | 61 | public override int MinimumProblemSize { get { return 2; } }
|
---|
[7128] | 62 |
|
---|
| 63 | public override int MaximumProblemSize { get { return 2; } }
|
---|
| 64 |
|
---|
| 65 | public override RealVector GetBestKnownSolution(int dimension) {
|
---|
| 66 | return new RealVector(dimension);
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[9407] | 69 | public override double Evaluate(RealVector point) {
|
---|
[7128] | 70 | if (point[0] < 0 || point[1] < 0)
|
---|
| 71 | return 0;
|
---|
| 72 | return Math.Sin(Math.Pow(point[0], point[1]));
|
---|
| 73 | }
|
---|
| 74 | }
|
---|
| 75 | }
|
---|