Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/FunctionLibraryInjectors/SimpleFunctionLibraryInjector.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: 4.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.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 SimpleFunctionLibraryInjector : 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 simple function library for regression and classification problems."; }
39    }
40
41    public SimpleFunctionLibraryInjector()
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      return Create(
60        minTimeOffset,
61        maxTimeOffset);
62    }
63
64    public static FunctionLibrary Create(int minTimeOffset, int maxTimeOffset) {
65      FunctionLibrary functionLibrary = new FunctionLibrary();
66
67      Variable variable = new Variable();
68      Constant constant = new Constant();
69      Differential differential = new Differential();
70      Addition addition = new Addition();
71      Cosinus cosinus = new Cosinus();
72      Division division = new Division();
73      Exponential exponential = new Exponential();
74      Logarithm logarithm = new Logarithm();
75      Multiplication multiplication = new Multiplication();
76      Power power = new Power();
77      Sinus sinus = new Sinus();
78      Sqrt sqrt = new Sqrt();
79      Subtraction subtraction = new Subtraction();
80      Tangens tangens = new Tangens();
81
82      List<IFunction> valueNodes = new List<IFunction>() {
83        differential, variable, constant
84      };
85      List<IFunction> arithmeticFunctions = new List<IFunction>() {
86      addition, division, multiplication, subtraction,
87      };
88
89      List<IFunction> complexFunctions = new List<IFunction>() {
90        cosinus, exponential, logarithm, power, sinus, sqrt, tangens
91      };
92
93      List<IFunction> allFunctions = new List<IFunction>();
94      allFunctions.AddRange(arithmeticFunctions);
95      allFunctions.AddRange(complexFunctions);
96      allFunctions.AddRange(valueNodes);
97
98      SetAllowedSubOperators(addition, allFunctions);
99      SetAllowedSubOperators(division, allFunctions);
100      SetAllowedSubOperators(multiplication, allFunctions);
101      SetAllowedSubOperators(subtraction, allFunctions);
102
103      SetAllowedSubOperators(cosinus, valueNodes);
104      SetAllowedSubOperators(exponential, valueNodes);
105      SetAllowedSubOperators(logarithm, valueNodes);
106      SetAllowedSubOperators(power, valueNodes);
107      SetAllowedSubOperators(sinus, valueNodes);
108      SetAllowedSubOperators(sqrt, valueNodes);
109      SetAllowedSubOperators(tangens, valueNodes);
110
111      allFunctions.ForEach(x => functionLibrary.AddFunction(x));
112
113      variable.SetConstraints(minTimeOffset, maxTimeOffset);
114      differential.SetConstraints(minTimeOffset, maxTimeOffset);
115
116      return functionLibrary;
117    }
118  }
119}
Note: See TracBrowser for help on using the repository browser.