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 {
|
---|
29 | /// <summary>
|
---|
30 | /// Injects the necessary variables for optimizing a test function
|
---|
31 | /// </summary>
|
---|
32 | public class TestFunctionInjector : OperatorBase {
|
---|
33 | /// <inheritdoc select="summary"/>
|
---|
34 | public override string Description {
|
---|
35 | get {
|
---|
36 | return @"Injects the necessary variables for optimizing a test function";
|
---|
37 | }
|
---|
38 | }
|
---|
39 |
|
---|
40 | /// <summary>
|
---|
41 | /// Gets or sets the boolean flag whether it is an optimization problem or not.
|
---|
42 | /// </summary>
|
---|
43 | public bool Maximization {
|
---|
44 | get { return GetVariable("Maximization").GetValue<BoolData>().Data; }
|
---|
45 | set { GetVariable("Maximization").Value = new BoolData(value); }
|
---|
46 | }
|
---|
47 |
|
---|
48 | /// <summary>
|
---|
49 | /// Gets or sets the lower bound.
|
---|
50 | /// </summary>
|
---|
51 | public double LowerBound {
|
---|
52 | get { return GetVariable("LowerBound").GetValue<DoubleData>().Data; }
|
---|
53 | set { GetVariable("LowerBound").Value = new DoubleData(value); }
|
---|
54 | }
|
---|
55 |
|
---|
56 | /// <summary>
|
---|
57 | /// Gets or sets the upper bound.
|
---|
58 | /// </summary>
|
---|
59 | public double UpperBound {
|
---|
60 | get { return GetVariable("UpperBound").GetValue<DoubleData>().Data; }
|
---|
61 | set { GetVariable("UpperBound").Value = new DoubleData(value); }
|
---|
62 | }
|
---|
63 |
|
---|
64 | /// <summary>
|
---|
65 | /// Gets or sets the dimension.
|
---|
66 | /// </summary>
|
---|
67 | public int Dimension {
|
---|
68 | get { return GetVariable("Dimension").GetValue<IntData>().Data; }
|
---|
69 | set { GetVariable("Dimension").Value = new IntData(value); }
|
---|
70 | }
|
---|
71 |
|
---|
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>
|
---|
76 | public TestFunctionInjector()
|
---|
77 | : base() {
|
---|
78 | AddVariable(new Variable("Maximization", new BoolData(false)));
|
---|
79 | AddVariable(new Variable("LowerBound", new DoubleData(-32.76)));
|
---|
80 | AddVariable(new Variable("UpperBound", new DoubleData(32.76)));
|
---|
81 | AddVariable(new Variable("Dimension", new IntData(2)));
|
---|
82 | }
|
---|
83 |
|
---|
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>
|
---|
89 | public override IOperation Apply(IScope scope) {
|
---|
90 | scope.AddVariable((IVariable)GetVariable("Maximization").Clone());
|
---|
91 | scope.AddVariable((IVariable)GetVariable("LowerBound").Clone());
|
---|
92 | scope.AddVariable((IVariable)GetVariable("UpperBound").Clone());
|
---|
93 | scope.AddVariable((IVariable)GetVariable("Dimension").Clone());
|
---|
94 | return null;
|
---|
95 | }
|
---|
96 | }
|
---|
97 | }
|
---|