Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3138_Shape_Constraints_Transformations/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/GESymbolicExpressionGrammar.cs @ 18180

Last change on this file since 18180 was 18180, checked in by dpiringe, 2 years ago

#3138

  • merged trunk into branch
File size: 6.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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 * Author: Sabine Winkler
21 */
22
23#endregion
24
25using System.Collections.Generic;
26using System.Linq;
27using HEAL.Attic;
28using HeuristicLab.Common;
29using HeuristicLab.Core;
30using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
31using HeuristicLab.Problems.DataAnalysis.Symbolic;
32using HeuristicLab.Random;
33
34namespace HeuristicLab.Problems.GrammaticalEvolution {
35  [StorableType("73D43A23-02FF-4BD8-9834-55D8A90E0FCE")]
36  [Item("GESymbolicExpressionGrammar", "Represents a grammar for functional expressions for grammatical evolution.")]
37  public class GESymbolicExpressionGrammar : DataAnalysisGrammar, ISymbolicDataAnalysisGrammar {
38    [StorableConstructor]
39    protected GESymbolicExpressionGrammar(StorableConstructorFlag _) : base(_) { }
40    protected GESymbolicExpressionGrammar(GESymbolicExpressionGrammar original, Cloner cloner) : base(original, cloner) { }
41    public GESymbolicExpressionGrammar()
42      : base(ItemAttribute.GetName(typeof(GESymbolicExpressionGrammar)), ItemAttribute.GetDescription(typeof(GESymbolicExpressionGrammar))) {
43      // empty ctor is necessary to allow creation of new GEGrammars from the GUI.
44      // the problem creates a new correctly configured grammar when the grammar is set
45    }
46    internal GESymbolicExpressionGrammar(IEnumerable<string> variableNames, int nConstants)
47      : base(ItemAttribute.GetName(typeof(GESymbolicExpressionGrammar)), ItemAttribute.GetDescription(typeof(GESymbolicExpressionGrammar))) {
48      // this ctor is called by the problem as only the problem knows the allowed input variables
49      Initialize(variableNames, nConstants);
50    }
51    public override IDeepCloneable Clone(Cloner cloner) {
52      return new GESymbolicExpressionGrammar(this, cloner);
53    }
54
55    private void Initialize(IEnumerable<string> variableNames, int nConstants) {
56      #region symbol declaration
57      var add = new Addition();
58      var sub = new Subtraction();
59      var mul = new Multiplication();
60      var div = new Division();
61      var mean = new Average();
62      var log = new Logarithm();
63      var pow = new Power();
64      var square = new Square();
65      var root = new Root();
66      var sqrt = new SquareRoot();
67      var exp = new Exponential();
68
69      // we use our own random number generator here because we assume
70      // that grammars are only initialized once when setting the grammar in the problem.
71      // This means everytime the grammar parameter in the problem is changed
72      // we initialize the constants to new values
73      var rand = new MersenneTwister();
74      // warm up
75      for (int i = 0; i < 1000; i++) rand.NextDouble();
76
77      var constants = new List<Constant>(nConstants);
78      for (int i = 0; i < nConstants; i++) {
79        var constant = new Constant();
80        do {
81          var constVal = rand.NextDouble() * 20.0 - 10.0;
82          constant.Name = string.Format("{0:0.000}", constVal);
83          constant.Value = constVal;
84        } while (constants.Any(c => c.Name == constant.Name)); // unlikely, but it could happen that the same constant value is sampled twice. so we resample if necessary.
85        constants.Add(constant);
86      }
87
88      var variables = new List<HeuristicLab.Problems.DataAnalysis.Symbolic.Variable>();
89      foreach (var variableName in variableNames) {
90        var variableSymbol = new HeuristicLab.Problems.DataAnalysis.Symbolic.Variable();
91        variableSymbol.Name = variableName;
92        variableSymbol.WeightManipulatorMu = 0.0;
93        variableSymbol.WeightManipulatorSigma = 0.0;
94        variableSymbol.WeightMu = 1.0;
95        variableSymbol.WeightSigma = 0.0;
96        variableSymbol.MultiplicativeWeightManipulatorSigma = 0.0;
97        variableSymbol.AllVariableNames = new[] { variableName };
98        variableSymbol.VariableNames = new[] { variableName };
99        variables.Add(variableSymbol);
100      }
101
102      #endregion
103
104      AddSymbol(add);
105      AddSymbol(sub);
106      AddSymbol(mul);
107      AddSymbol(div);
108      AddSymbol(mean);
109      AddSymbol(log);
110      AddSymbol(pow);
111      AddSymbol(square);
112      AddSymbol(root);
113      AddSymbol(sqrt);
114      AddSymbol(exp);
115      constants.ForEach(AddSymbol);
116      variables.ForEach(AddSymbol);
117
118      #region subtree count configuration
119      SetSubtreeCount(add, 2, 2);
120      SetSubtreeCount(sub, 2, 2);
121      SetSubtreeCount(mul, 2, 2);
122      SetSubtreeCount(div, 2, 2);
123      SetSubtreeCount(mean, 2, 2);
124      SetSubtreeCount(log, 1, 1);
125      SetSubtreeCount(pow, 2, 2);
126      SetSubtreeCount(square, 1, 1);
127      SetSubtreeCount(root, 2, 2);
128      SetSubtreeCount(sqrt, 1, 1);
129      SetSubtreeCount(exp, 1, 1);
130      constants.ForEach((c) => SetSubtreeCount(c, 0, 0));
131      variables.ForEach((v) => SetSubtreeCount(v, 0, 0));
132      #endregion
133
134      var functions = new ISymbol[] { add, sub, mul, div, mean, log, pow, root, square, sqrt };
135      var terminalSymbols = variables.Concat<ISymbol>(constants);
136      var allSymbols = functions.Concat(terminalSymbols);
137
138      #region allowed child symbols configuration
139      foreach (var s in allSymbols) {
140        AddAllowedChildSymbol(StartSymbol, s);
141      }
142      foreach (var parentSymb in functions)
143        foreach (var childSymb in allSymbols) {
144          AddAllowedChildSymbol(parentSymb, childSymb);
145        }
146
147      #endregion
148    }
149  }
150}
Note: See TracBrowser for help on using the repository browser.