Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/FunctionLibraryInjectors/ArithmeticFunctionLibraryInjector.cs @ 2830

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

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

File size: 3.5 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 ArithmeticFunctionLibraryInjector : 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 function library with (+, -, *,  /) symbols."; }
39    }
40
41    public ArithmeticFunctionLibraryInjector()
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      Division division = new Division();
66      Multiplication multiplication = new Multiplication();
67      Subtraction subtraction = new Subtraction();
68
69      List<IFunction> doubleFunctions = new List<IFunction>() {
70      differential, variable, constant, addition, division, multiplication, subtraction
71      };
72
73      SetAllowedSubOperators(addition, doubleFunctions);
74      SetAllowedSubOperators(division, doubleFunctions);
75      SetAllowedSubOperators(multiplication, doubleFunctions);
76      SetAllowedSubOperators(subtraction, doubleFunctions);
77
78      doubleFunctions.ForEach(fun => functionLibrary.AddFunction(fun));
79
80      variable.SetConstraints(minTimeOffset, maxTimeOffset);
81      differential.SetConstraints(minTimeOffset, maxTimeOffset);
82
83      return functionLibrary;
84    }
85  }
86}
Note: See TracBrowser for help on using the repository browser.