[720] | 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;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using System.Xml;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.DataAnalysis;
|
---|
[2222] | 29 | using HeuristicLab.GP.Interfaces;
|
---|
[2223] | 30 | using HeuristicLab.GP;
|
---|
[720] | 31 |
|
---|
| 32 | namespace HeuristicLab.GP.Boolean {
|
---|
[2222] | 33 | public class FunctionLibraryInjector : FunctionLibraryInjectorBase {
|
---|
[720] | 34 | public override string Description {
|
---|
| 35 | get { return @"Injects a function library for boolean logic."; }
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | public FunctionLibraryInjector()
|
---|
| 39 | : base() {
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[2222] | 42 | protected override FunctionLibrary CreateFunctionLibrary() {
|
---|
[720] | 43 | And and = new And();
|
---|
| 44 | Or or = new Or();
|
---|
[2222] | 45 | Not not = new Not();
|
---|
[720] | 46 | Nand nand = new Nand();
|
---|
| 47 | Nor nor = new Nor();
|
---|
[2222] | 48 | Xor xor = new Xor();
|
---|
| 49 | Variable variable = new Variable();
|
---|
[720] | 50 |
|
---|
| 51 | IFunction[] allFunctions = new IFunction[] {
|
---|
| 52 | and,
|
---|
| 53 | or,
|
---|
[2222] | 54 | not,
|
---|
[720] | 55 | nand,
|
---|
| 56 | nor,
|
---|
[2222] | 57 | xor,
|
---|
[720] | 58 | variable
|
---|
| 59 | };
|
---|
| 60 |
|
---|
| 61 | SetAllowedSubOperators(and, allFunctions);
|
---|
| 62 | SetAllowedSubOperators(or, allFunctions);
|
---|
[2222] | 63 | SetAllowedSubOperators(not, allFunctions);
|
---|
[720] | 64 | SetAllowedSubOperators(nand, allFunctions);
|
---|
| 65 | SetAllowedSubOperators(nor, allFunctions);
|
---|
[2222] | 66 | SetAllowedSubOperators(xor, allFunctions);
|
---|
[720] | 67 |
|
---|
[2222] | 68 | var functionLibrary = new FunctionLibrary();
|
---|
| 69 | functionLibrary.AddFunction(and);
|
---|
| 70 | functionLibrary.AddFunction(or);
|
---|
| 71 | functionLibrary.AddFunction(not);
|
---|
| 72 | functionLibrary.AddFunction(nand);
|
---|
| 73 | functionLibrary.AddFunction(nor);
|
---|
| 74 | functionLibrary.AddFunction(xor);
|
---|
| 75 | functionLibrary.AddFunction(variable);
|
---|
| 76 | return functionLibrary;
|
---|
[720] | 77 | }
|
---|
| 78 | }
|
---|
| 79 | }
|
---|