Free cookie consent management tool by TermsFeed Policy Generator

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

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

Removed max. and min. time offset constraints as algorithm parameters and from all engines. The time constraints were added to the relevant terminal symbols (variable & differential) instead. The time offset constraint can be changed by editing the symbols in the function library. #880 (Max and min time offsets for variable symbols are not set correctly by FunctionLibraryInjectors)

File size: 4.3 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 override string Description {
32      get { return @"Injects a default function library for regression and classification problems."; }
33    }
34
35    protected override FunctionLibrary CreateFunctionLibrary() {
36      FunctionLibrary functionLibrary = new FunctionLibrary();
37
38      Variable variable = new Variable();
39      Constant constant = new Constant();
40      Differential differential = new Differential();
41      Addition addition = new Addition();
42      And and = new And();
43      Average average = new Average();
44      Cosinus cosinus = new Cosinus();
45      Division division = new Division();
46      Equal equal = new Equal();
47      Exponential exponential = new Exponential();
48      GreaterThan greaterThan = new GreaterThan();
49      IfThenElse ifThenElse = new IfThenElse();
50      LessThan lessThan = new LessThan();
51      Logarithm logarithm = new Logarithm();
52      Multiplication multiplication = new Multiplication();
53      Not not = new Not();
54      Or or = new Or();
55      Power power = new Power();
56      Signum signum = new Signum();
57      Sinus sinus = new Sinus();
58      Sqrt sqrt = new Sqrt();
59      Subtraction subtraction = new Subtraction();
60      Tangens tangens = new Tangens();
61      Xor xor = new Xor();
62
63
64      List<IFunction> booleanFunctions = new List<IFunction>() {
65        and, equal, greaterThan, lessThan, not, or, xor
66      };
67
68
69      List<IFunction> doubleFunctions = new List<IFunction>() {
70        differential, variable, constant, addition, average, cosinus, division, exponential,
71        ifThenElse, logarithm, multiplication, power, signum, sinus, sqrt, subtraction, tangens};
72
73      SetAllowedSubOperators(and, booleanFunctions);
74      SetAllowedSubOperators(equal, doubleFunctions);
75      SetAllowedSubOperators(greaterThan, doubleFunctions);
76      SetAllowedSubOperators(lessThan, doubleFunctions);
77      SetAllowedSubOperators(not, booleanFunctions);
78      SetAllowedSubOperators(or, booleanFunctions);
79      SetAllowedSubOperators(xor, booleanFunctions);
80      SetAllowedSubOperators(addition, doubleFunctions);
81      SetAllowedSubOperators(average, doubleFunctions);
82      SetAllowedSubOperators(cosinus, doubleFunctions);
83      SetAllowedSubOperators(division, doubleFunctions);
84      SetAllowedSubOperators(exponential, doubleFunctions);
85      SetAllowedSubOperators(ifThenElse, 0, booleanFunctions);
86      SetAllowedSubOperators(ifThenElse, 1, doubleFunctions);
87      SetAllowedSubOperators(ifThenElse, 2, doubleFunctions);
88      SetAllowedSubOperators(logarithm, doubleFunctions);
89      SetAllowedSubOperators(multiplication, doubleFunctions);
90      SetAllowedSubOperators(power, doubleFunctions);
91      SetAllowedSubOperators(signum, doubleFunctions);
92      SetAllowedSubOperators(sinus, doubleFunctions);
93      SetAllowedSubOperators(sqrt, doubleFunctions);
94      SetAllowedSubOperators(subtraction, doubleFunctions);
95      SetAllowedSubOperators(tangens, doubleFunctions);
96
97      doubleFunctions.ForEach(fun => functionLibrary.AddFunction(fun));
98      booleanFunctions.ForEach(fun => functionLibrary.AddFunction(fun));
99
100      return functionLibrary;
101    }
102  }
103}
Note: See TracBrowser for help on using the repository browser.