[106] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.TestFunctions {
|
---|
[1188] | 29 | /// <summary>
|
---|
| 30 | /// Injects the necessary variables for optimizing a test function
|
---|
| 31 | /// </summary>
|
---|
[106] | 32 | public class TestFunctionInjector : OperatorBase {
|
---|
[1188] | 33 | /// <inheritdoc select="summary"/>
|
---|
[106] | 34 | public override string Description {
|
---|
| 35 | get {
|
---|
| 36 | return @"Injects the necessary variables for optimizing a test function";
|
---|
| 37 | }
|
---|
| 38 | }
|
---|
| 39 |
|
---|
[1188] | 40 | /// <summary>
|
---|
| 41 | /// Gets or sets the boolean flag whether it is an optimization problem or not.
|
---|
| 42 | /// </summary>
|
---|
[106] | 43 | public bool Maximization {
|
---|
| 44 | get { return GetVariable("Maximization").GetValue<BoolData>().Data; }
|
---|
| 45 | set { GetVariable("Maximization").Value = new BoolData(value); }
|
---|
| 46 | }
|
---|
| 47 |
|
---|
[1188] | 48 | /// <summary>
|
---|
| 49 | /// Gets or sets the lower bound.
|
---|
| 50 | /// </summary>
|
---|
[109] | 51 | public double LowerBound {
|
---|
| 52 | get { return GetVariable("LowerBound").GetValue<DoubleData>().Data; }
|
---|
| 53 | set { GetVariable("LowerBound").Value = new DoubleData(value); }
|
---|
[106] | 54 | }
|
---|
| 55 |
|
---|
[1188] | 56 | /// <summary>
|
---|
| 57 | /// Gets or sets the upper bound.
|
---|
| 58 | /// </summary>
|
---|
[109] | 59 | public double UpperBound {
|
---|
| 60 | get { return GetVariable("UpperBound").GetValue<DoubleData>().Data; }
|
---|
| 61 | set { GetVariable("UpperBound").Value = new DoubleData(value); }
|
---|
[106] | 62 | }
|
---|
| 63 |
|
---|
[1188] | 64 | /// <summary>
|
---|
| 65 | /// Gets or sets the dimension.
|
---|
| 66 | /// </summary>
|
---|
[109] | 67 | public int Dimension {
|
---|
| 68 | get { return GetVariable("Dimension").GetValue<IntData>().Data; }
|
---|
| 69 | set { GetVariable("Dimension").Value = new IntData(value); }
|
---|
[106] | 70 | }
|
---|
| 71 |
|
---|
[1188] | 72 | /// <summary>
|
---|
| 73 | /// Initializes a new instance of <see cref="TestFunctionInjector"/> with four variable infos
|
---|
| 74 | /// (<c>Maximization</c>, <c>LowerBound</c>, <c>UpperBound</c> and <c>Dimension</c>).
|
---|
| 75 | /// </summary>
|
---|
[106] | 76 | public TestFunctionInjector()
|
---|
| 77 | : base() {
|
---|
| 78 | AddVariable(new Variable("Maximization", new BoolData(false)));
|
---|
[110] | 79 | AddVariable(new Variable("LowerBound", new DoubleData(-32.76)));
|
---|
| 80 | AddVariable(new Variable("UpperBound", new DoubleData(32.76)));
|
---|
[109] | 81 | AddVariable(new Variable("Dimension", new IntData(2)));
|
---|
[106] | 82 | }
|
---|
| 83 |
|
---|
[1188] | 84 | /// <summary>
|
---|
| 85 | /// Injects the necessary variables for optimizing a test function.
|
---|
| 86 | /// </summary>
|
---|
| 87 | /// <param name="scope">The scope where to inject the variables.</param>
|
---|
| 88 | /// <returns><c>null</c>.</returns>
|
---|
[106] | 89 | public override IOperation Apply(IScope scope) {
|
---|
| 90 | scope.AddVariable((IVariable)GetVariable("Maximization").Clone());
|
---|
[109] | 91 | scope.AddVariable((IVariable)GetVariable("LowerBound").Clone());
|
---|
| 92 | scope.AddVariable((IVariable)GetVariable("UpperBound").Clone());
|
---|
| 93 | scope.AddVariable((IVariable)GetVariable("Dimension").Clone());
|
---|
[106] | 94 | return null;
|
---|
| 95 | }
|
---|
| 96 |
|
---|
[1188] | 97 | /// <summary>
|
---|
| 98 | /// Creates a new instance of <see cref="TestFunctionInjectorView"/> to represent the current
|
---|
| 99 | /// instance visually.
|
---|
| 100 | /// </summary>
|
---|
| 101 | /// <returns>The newly created view as <see cref="TestFunctionInjectorView"/>.</returns>
|
---|
[106] | 102 | public override IView CreateView() {
|
---|
| 103 | return new TestFunctionInjectorView(this);
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 | }
|
---|