Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.TestFunctions/TestFunctionInjector.cs @ 1044

Last change on this file since 1044 was 110, checked in by abeham, 16 years ago

Fixed small error still from ticket #91

File size: 2.7 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using System.Text;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27
28namespace 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
41    public double LowerBound {
42      get { return GetVariable("LowerBound").GetValue<DoubleData>().Data; }
43      set { GetVariable("LowerBound").Value = new DoubleData(value); }
44    }
45
46    public double UpperBound {
47      get { return GetVariable("UpperBound").GetValue<DoubleData>().Data; }
48      set { GetVariable("UpperBound").Value = new DoubleData(value); }
49    }
50
51    public int Dimension {
52      get { return GetVariable("Dimension").GetValue<IntData>().Data; }
53      set { GetVariable("Dimension").Value = new IntData(value); }
54    }
55
56    public TestFunctionInjector()
57      : base() {
58      AddVariable(new Variable("Maximization", new BoolData(false)));
59      AddVariable(new Variable("LowerBound", new DoubleData(-32.76)));
60      AddVariable(new Variable("UpperBound", new DoubleData(32.76)));
61      AddVariable(new Variable("Dimension", new IntData(2)));
62    }
63
64    public override IOperation Apply(IScope scope) {
65      scope.AddVariable((IVariable)GetVariable("Maximization").Clone());
66      scope.AddVariable((IVariable)GetVariable("LowerBound").Clone());
67      scope.AddVariable((IVariable)GetVariable("UpperBound").Clone());
68      scope.AddVariable((IVariable)GetVariable("Dimension").Clone());
69      return null;
70    }
71
72    public override IView CreateView() {
73      return new TestFunctionInjectorView(this);
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.