Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Problems.ArtificialAnt/3.4/ArtificialAntExpressionGrammar.cs @ 5686

Last change on this file since 5686 was 5686, checked in by mkommend, 13 years ago

#1418: Finally added results from the grammar refactoring.

File size: 2.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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
23using System.Collections.Generic;
24using HeuristicLab.Common;
25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Problems.ArtificialAnt.Symbols;
28namespace HeuristicLab.Problems.ArtificialAnt {
29  [StorableClass]
30  public class ArtificialAntExpressionGrammar : SymbolicExpressionGrammar {
31
32    public ArtificialAntExpressionGrammar()
33      : base() {
34      Initialize();
35    }
36    [StorableConstructor]
37    protected ArtificialAntExpressionGrammar(bool deserializing) : base(deserializing) { }
38    protected ArtificialAntExpressionGrammar(ArtificialAntExpressionGrammar original, Cloner cloner) : base(original, cloner) { }
39    public override IDeepCloneable Clone(Cloner cloner) {
40      return new ArtificialAntExpressionGrammar(this, cloner);
41    }
42
43    private void Initialize() {
44      var ifFoodAhead = new IfFoodAhead();
45      var prog2 = new Prog2();
46      var prog3 = new Prog3();
47      var move = new Move();
48      var left = new Left();
49      var right = new Right();
50      var defun = new Defun();
51      var allSymbols = new List<Symbol>() { ifFoodAhead, prog2, prog3, move, left, right };
52      var nonTerminalSymbols = new List<Symbol>() { ifFoodAhead, prog2, prog3 };
53
54      allSymbols.ForEach(s => AddSymbol(s));
55      SetSubtreeCount(ifFoodAhead, 2, 3);
56      SetSubtreeCount(prog2, 2, 2);
57      SetSubtreeCount(prog3, 3, 3);
58      SetSubtreeCount(move, 0, 0);
59      SetSubtreeCount(left, 0, 0);
60      SetSubtreeCount(right, 0, 0);
61
62      // each symbols is allowed as child of the start symbol
63      allSymbols.ForEach(s => AddAllowedChildSymbol(StartSymbol, s));
64      allSymbols.ForEach(s => AddAllowedChildSymbol(DefunSymbol, s));
65
66      // each symbol is allowed as child of all other symbols (except for terminals that have MaxSubtreeCount == 0
67      foreach (var parent in nonTerminalSymbols) {
68        foreach (var child in allSymbols) {
69          AddAllowedChildSymbol(parent, child);
70        }
71      }
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.