Free cookie consent management tool by TermsFeed Policy Generator

source: branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/TestFunctions/CustomEvaluator.cs @ 10891

Last change on this file since 10891 was 9984, checked in by abeham, 11 years ago

#1909: fixed evaluator in FLA branch

File size: 2.4 KB
Line 
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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Encodings.RealVectorEncoding;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.TestFunctions.Evaluators {
30  [Item("CustomEvaluator", "Evaluates a custom test fuction.")]
31  [StorableClass]
32  public class CustomEvaluator : SingleObjectiveTestFunctionProblemEvaluator {
33
34    public override string FunctionName {
35      get { return "sin(x^y)"; }
36    }
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
61    public override int MinimumProblemSize { get { return 2; } }
62
63    public override int MaximumProblemSize { get { return 2; } }
64
65    public override RealVector GetBestKnownSolution(int dimension) {
66      return new RealVector(dimension);
67    }
68
69    public override double Evaluate(RealVector point) {
70      if (point[0] < 0 || point[1] < 0)
71        return 0;
72      return Math.Sin(Math.Pow(point[0], point[1]));
73    }
74  }
75}
Note: See TracBrowser for help on using the repository browser.