[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 {
|
---|
| 29 | public class TestFunctionInjector : OperatorBase {
|
---|
| 30 | public override string Description {
|
---|
| 31 | get {
|
---|
| 32 | return @"Injects the necessary variables for optimizing a test function";
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | public bool Maximization {
|
---|
| 37 | get { return GetVariable("Maximization").GetValue<BoolData>().Data; }
|
---|
| 38 | set { GetVariable("Maximization").Value = new BoolData(value); }
|
---|
| 39 | }
|
---|
| 40 |
|
---|
[109] | 41 | public double LowerBound {
|
---|
| 42 | get { return GetVariable("LowerBound").GetValue<DoubleData>().Data; }
|
---|
| 43 | set { GetVariable("LowerBound").Value = new DoubleData(value); }
|
---|
[106] | 44 | }
|
---|
| 45 |
|
---|
[109] | 46 | public double UpperBound {
|
---|
| 47 | get { return GetVariable("UpperBound").GetValue<DoubleData>().Data; }
|
---|
| 48 | set { GetVariable("UpperBound").Value = new DoubleData(value); }
|
---|
[106] | 49 | }
|
---|
| 50 |
|
---|
[109] | 51 | public int Dimension {
|
---|
| 52 | get { return GetVariable("Dimension").GetValue<IntData>().Data; }
|
---|
| 53 | set { GetVariable("Dimension").Value = new IntData(value); }
|
---|
[106] | 54 | }
|
---|
| 55 |
|
---|
| 56 | public TestFunctionInjector()
|
---|
| 57 | : base() {
|
---|
| 58 | AddVariable(new Variable("Maximization", new BoolData(false)));
|
---|
[110] | 59 | AddVariable(new Variable("LowerBound", new DoubleData(-32.76)));
|
---|
| 60 | AddVariable(new Variable("UpperBound", new DoubleData(32.76)));
|
---|
[109] | 61 | AddVariable(new Variable("Dimension", new IntData(2)));
|
---|
[106] | 62 | }
|
---|
| 63 |
|
---|
| 64 | public override IOperation Apply(IScope scope) {
|
---|
| 65 | scope.AddVariable((IVariable)GetVariable("Maximization").Clone());
|
---|
[109] | 66 | scope.AddVariable((IVariable)GetVariable("LowerBound").Clone());
|
---|
| 67 | scope.AddVariable((IVariable)GetVariable("UpperBound").Clone());
|
---|
| 68 | scope.AddVariable((IVariable)GetVariable("Dimension").Clone());
|
---|
[106] | 69 | return null;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | public override IView CreateView() {
|
---|
| 73 | return new TestFunctionInjectorView(this);
|
---|
| 74 | }
|
---|
| 75 | }
|
---|
| 76 | }
|
---|