Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/FunctionLibraryInjectors/DefaultFunctionLibraryInjector.cs @ 2728

Last change on this file since 2728 was 2728, checked in by gkronber, 14 years ago

Created a specialized view for function library injectors which allows full configuration of the function library. #748 (FunctionLibraryView is empty)

File size: 5.9 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.Collections.Generic;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.GP.Interfaces;
26using HeuristicLab.GP;
27
28namespace HeuristicLab.GP.StructureIdentification {
29  [SymbolicRegressionFunctionLibraryInjector]
30  public class DefaultFunctionLibraryInjector : FunctionLibraryInjectorBase {
31    public const string MINTIMEOFFSET = "MinTimeOffset";
32    public const string MAXTIMEOFFSET = "MaxTimeOffset";
33
34    private int minTimeOffset;
35    private int maxTimeOffset;
36
37    public override string Description {
38      get { return @"Injects a default function library for regression and classification problems."; }
39    }
40
41    public DefaultFunctionLibraryInjector()
42      : base() {
43      AddVariableInfo(new VariableInfo(MINTIMEOFFSET, "Minimal time offset for all features", typeof(IntData), VariableKind.In));
44      AddVariableInfo(new VariableInfo(MAXTIMEOFFSET, "Maximal time offset for all feature", typeof(IntData), VariableKind.In));
45    }
46
47    public override IOperation Apply(IScope scope) {
48      // try to get minTimeOffset (use 0 as default if not available)
49      IItem minTimeOffsetItem = GetVariableValue(MINTIMEOFFSET, scope, true, false);
50      minTimeOffset = minTimeOffsetItem == null ? 0 : ((IntData)minTimeOffsetItem).Data;
51      // try to get maxTimeOffset (use 0 as default if not available)
52      IItem maxTimeOffsetItem = GetVariableValue(MAXTIMEOFFSET, scope, true, false);
53      maxTimeOffset = maxTimeOffsetItem == null ? 0 : ((IntData)maxTimeOffsetItem).Data;
54
55      return base.Apply(scope);
56    }
57
58    protected override FunctionLibrary CreateFunctionLibrary() {
59      FunctionLibrary functionLibrary = new FunctionLibrary();
60
61      Variable variable = new Variable();
62      Constant constant = new Constant();
63      Differential differential = new Differential();
64      Addition addition = new Addition();
65      And and = new And();
66      Average average = new Average();
67      Cosinus cosinus = new Cosinus();
68      Division division = new Division();
69      Equal equal = new Equal();
70      Exponential exponential = new Exponential();
71      GreaterThan greaterThan = new GreaterThan();
72      IfThenElse ifThenElse = new IfThenElse();
73      LessThan lessThan = new LessThan();
74      Logarithm logarithm = new Logarithm();
75      Multiplication multiplication = new Multiplication();
76      Not not = new Not();
77      Or or = new Or();
78      Power power = new Power();
79      Signum signum = new Signum();
80      Sinus sinus = new Sinus();
81      Sqrt sqrt = new Sqrt();
82      Subtraction subtraction = new Subtraction();
83      Tangens tangens = new Tangens();
84      Xor xor = new Xor();
85
86
87      List<IFunction> booleanFunctions = new List<IFunction>() {
88        and, equal, greaterThan, lessThan, not, or, xor
89      };
90
91
92      List<IFunction> doubleFunctions = new List<IFunction>() {
93        differential, variable, constant, addition, average, cosinus, division, exponential,
94        ifThenElse, logarithm, multiplication, power, signum, sinus, sqrt, subtraction, tangens};
95
96      SetAllowedSubOperators(and, booleanFunctions);
97      SetAllowedSubOperators(equal, doubleFunctions);
98      SetAllowedSubOperators(greaterThan, doubleFunctions);
99      SetAllowedSubOperators(lessThan, doubleFunctions);
100      SetAllowedSubOperators(not, booleanFunctions);
101      SetAllowedSubOperators(or, booleanFunctions);
102      SetAllowedSubOperators(xor, booleanFunctions);
103      SetAllowedSubOperators(addition, doubleFunctions);
104      SetAllowedSubOperators(average, doubleFunctions);
105      SetAllowedSubOperators(cosinus, doubleFunctions);
106      SetAllowedSubOperators(division, doubleFunctions);
107      SetAllowedSubOperators(exponential, doubleFunctions);
108      SetAllowedSubOperators(ifThenElse, 0, booleanFunctions);
109      SetAllowedSubOperators(ifThenElse, 1, doubleFunctions);
110      SetAllowedSubOperators(ifThenElse, 2, doubleFunctions);
111      SetAllowedSubOperators(logarithm, doubleFunctions);
112      SetAllowedSubOperators(multiplication, doubleFunctions);
113      SetAllowedSubOperators(power, doubleFunctions);
114      SetAllowedSubOperators(signum, doubleFunctions);
115      SetAllowedSubOperators(sinus, doubleFunctions);
116      SetAllowedSubOperators(sqrt, doubleFunctions);
117      SetAllowedSubOperators(subtraction, doubleFunctions);
118      SetAllowedSubOperators(tangens, doubleFunctions);
119
120      doubleFunctions.ForEach(fun => functionLibrary.AddFunction(fun));
121      booleanFunctions.ForEach(fun => functionLibrary.AddFunction(fun));
122
123      variable.SetConstraints(minTimeOffset, maxTimeOffset);
124      differential.SetConstraints(minTimeOffset, maxTimeOffset);
125
126      return functionLibrary;
127    }
128
129    private void ConditionalAddFunction(string condName, IFunction fun, List<IFunction> list) {
130      if (GetVariableValue<BoolData>(condName, null, false).Data) list.Add(fun);
131    }
132
133    private void ConditionalAddOperator(string condName, FunctionLibrary functionLib, IFunction op) {
134      if (GetVariableValue<BoolData>(condName, null, false).Data) functionLib.AddFunction(op);
135    }
136  }
137}
Note: See TracBrowser for help on using the repository browser.