Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/ArtificialAntExpressionGrammar.cs @ 3702

Last change on this file since 3702 was 3462, checked in by gkronber, 14 years ago

Refactored symbolic expression tree encoding and problem classes for symbolic regression. #937 , #938

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