[1050] | 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;
|
---|
[2222] | 25 | using HeuristicLab.GP.Interfaces;
|
---|
[2223] | 26 | using HeuristicLab.GP;
|
---|
[1050] | 27 |
|
---|
| 28 | namespace HeuristicLab.GP.StructureIdentification {
|
---|
[2566] | 29 | [SymbolicRegressionFunctionLibraryInjector]
|
---|
| 30 | public class DefaultFunctionLibraryInjector : FunctionLibraryInjectorBase {
|
---|
[1050] | 31 | public override string Description {
|
---|
[2728] | 32 | get { return @"Injects a default function library for regression and classification problems."; }
|
---|
[1050] | 33 | }
|
---|
| 34 |
|
---|
[2222] | 35 | protected override FunctionLibrary CreateFunctionLibrary() {
|
---|
| 36 | FunctionLibrary functionLibrary = new FunctionLibrary();
|
---|
[1050] | 37 |
|
---|
[2222] | 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();
|
---|
[1910] | 62 |
|
---|
| 63 |
|
---|
[2728] | 64 | List<IFunction> booleanFunctions = new List<IFunction>() {
|
---|
| 65 | and, equal, greaterThan, lessThan, not, or, xor
|
---|
| 66 | };
|
---|
[2222] | 67 |
|
---|
| 68 |
|
---|
[2728] | 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 |
|
---|
[1050] | 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 |
|
---|
[2728] | 97 | doubleFunctions.ForEach(fun => functionLibrary.AddFunction(fun));
|
---|
| 98 | booleanFunctions.ForEach(fun => functionLibrary.AddFunction(fun));
|
---|
[1287] | 99 |
|
---|
[2222] | 100 | return functionLibrary;
|
---|
[1050] | 101 | }
|
---|
| 102 | }
|
---|
| 103 | }
|
---|