Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-Refactoring-713/sources/HeuristicLab.GP.Boolean/3.3/FunctionLibraryInjector.cs @ 2216

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

GP Refactoring #713

  • cleaned code
  • reintegrated GP.Boolean and GP.SantaFe
  • worked on serialization of function trees
File size: 2.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;
23using System.Collections.Generic;
24using System.Text;
25using System.Xml;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.DataAnalysis;
29using HeuristicLab.GP.Interfaces;
30using HeuristicLab.GP.SantaFe;
31
32namespace HeuristicLab.GP.Boolean {
33  public class FunctionLibraryInjector : FunctionLibraryInjectorBase {
34    public override string Description {
35      get { return @"Injects a function library for boolean logic."; }
36    }
37
38    public FunctionLibraryInjector()
39      : base() {
40    }
41
42    protected override FunctionLibrary CreateFunctionLibrary() {
43      And and = new And();
44      Or or = new Or();
45      Not not = new Not();
46      Nand nand = new Nand();
47      Nor nor = new Nor();
48      Xor xor = new Xor();
49      Variable variable = new Variable();
50
51      IFunction[] allFunctions = new IFunction[] {
52        and,
53        or,
54        not,
55        nand,
56        nor,
57        xor,
58        variable
59      };
60
61      SetAllowedSubOperators(and, allFunctions);
62      SetAllowedSubOperators(or, allFunctions);
63      SetAllowedSubOperators(not, allFunctions);
64      SetAllowedSubOperators(nand, allFunctions);
65      SetAllowedSubOperators(nor, allFunctions);
66      SetAllowedSubOperators(xor, allFunctions);
67
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;
77    }
78  }
79}
Note: See TracBrowser for help on using the repository browser.