Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5528 was 5517, checked in by mkommend, 14 years ago

#1418: Fixed compilation errors in Problems.ArtificalAnt.

File size: 3.1 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 : DefaultSymbolicExpressionGrammar {
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      SetMinSubtreeCount(ifFoodAhead, 2);
56      SetMaxSubtreeCount(ifFoodAhead, 2);
57      SetMinSubtreeCount(prog2, 2);
58      SetMaxSubtreeCount(prog2, 2);
59      SetMinSubtreeCount(prog3, 3);
60      SetMaxSubtreeCount(prog3, 3);
61      SetMinSubtreeCount(move, 0);
62      SetMaxSubtreeCount(move, 0);
63      SetMinSubtreeCount(left, 0);
64      SetMaxSubtreeCount(left, 0);
65      SetMinSubtreeCount(right, 0);
66      SetMaxSubtreeCount(right, 0);
67
68      // each symbols is allowed as child of the start symbol
69      allSymbols.ForEach(s => SetAllowedChild(StartSymbol, s, 0));
70
71      // each symbol is allowed as child of all other symbols (except for terminals that have MaxSubtreeCount == 0
72      foreach (var parent in allSymbols) {
73        for (int argIndex = 0; argIndex < GetMaxSubtreeCount(parent); argIndex++) {
74          foreach (var child in allSymbols) {
75            SetAllowedChild(parent, child, argIndex);
76          }
77        }
78      }
79    }
80  }
81}
Note: See TracBrowser for help on using the repository browser.