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.Collections.Generic;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Data;
|
---|
25 | using HeuristicLab.GP.Interfaces;
|
---|
26 | using HeuristicLab.GP;
|
---|
27 |
|
---|
28 | namespace 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 | }
|
---|