Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/SymbolicExpressionTreeCrossover.cs @ 3256

Last change on this file since 3256 was 3239, checked in by gkronber, 14 years ago

Extracted view for artificial ant problem into a separate plugin/project. #952 (Artificial Ant Problem for 3.3)

File size: 5.1 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
22using HeuristicLab.Core;
23using HeuristicLab.Data;
24using HeuristicLab.Operators;
25using HeuristicLab.Optimization;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using System;
29using System.Diagnostics;
30
31namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
32  /// <summary>
33  /// A base class for operators that perform a crossover of symbolic expression trees.
34  /// </summary>
35  [Item("SymbolicExpressionTreeCrossover", "A base class for operators that perform a crossover of symbolic expression trees.")]
36  [StorableClass]
37  public abstract class SymbolicExpressionTreeCrossover : SingleSuccessorOperator, ICrossover, IStochasticOperator, ISymbolicExpressionTreeOperator {
38    public override bool CanChangeName {
39      get { return false; }
40    }
41
42    public ILookupParameter<IRandom> RandomParameter {
43      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
44    }
45    public ILookupParameter<ItemArray<SymbolicExpressionTree>> ParentsParameter {
46      get { return (SubScopesLookupParameter<SymbolicExpressionTree>)Parameters["Parents"]; }
47    }
48    public ILookupParameter<SymbolicExpressionTree> ChildParameter {
49      get { return (ILookupParameter<SymbolicExpressionTree>)Parameters["Child"]; }
50    }
51    public IValueLookupParameter<IntValue> MaxTreeSizeParameter {
52      get { return (IValueLookupParameter<IntValue>)Parameters["MaxTreeSize"]; }
53    }
54    public IValueLookupParameter<IntValue> MaxTreeHeightParameter {
55      get { return (IValueLookupParameter<IntValue>)Parameters["MaxTreeHeight"]; }
56    }
57    public ILookupParameter<ISymbolicExpressionGrammar> SymbolicExpressionGrammarParameter {
58      get { return (ILookupParameter<ISymbolicExpressionGrammar>)Parameters["SymbolicExpressionGrammar"]; }
59    }
60
61    protected SymbolicExpressionTreeCrossover()
62      : base() {
63      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators."));
64      Parameters.Add(new SubScopesLookupParameter<SymbolicExpressionTree>("Parents", "The parent symbolic expression trees which should be crossed."));
65      Parameters.Add(new ValueLookupParameter<IntValue>("MaxTreeSize", "The maximal size (number of nodes) of the symbolic expression tree that should be initialized."));
66      Parameters.Add(new ValueLookupParameter<IntValue>("MaxTreeHeight", "The maximal height of the symbolic expression tree that should be initialized (a tree with one node has height = 0)."));
67      Parameters.Add(new LookupParameter<ISymbolicExpressionGrammar>("SymbolicExpressionGrammar", "The grammar that defines the allowed symbols and syntax of the symbolic expression trees."));
68      Parameters.Add(new LookupParameter<SymbolicExpressionTree>("Child", "The child symbolic expression tree resulting from the crossover."));
69    }
70
71    public sealed override IOperation Apply() {
72      if (ParentsParameter.ActualValue.Length != 2)
73        throw new ArgumentException("Number of parents must be exactly two for symbolic expression tree crossover operators.");
74
75      SymbolicExpressionTree parent0 = ParentsParameter.ActualValue[0];
76      SymbolicExpressionTree parent1 = ParentsParameter.ActualValue[1];
77
78      IRandom random = RandomParameter.ActualValue;
79      ISymbolicExpressionGrammar grammar = SymbolicExpressionGrammarParameter.ActualValue;
80
81      // randomly swap parents to remove a possible bias from selection (e.g. when using gender-specific selection)
82      if (random.NextDouble() < 0.5) {
83        var tmp = parent0;
84        parent0 = parent1;
85        parent1 = tmp;
86      }
87
88      SymbolicExpressionTree result = Cross(random, grammar, parent0, parent1,
89        MaxTreeSizeParameter.ActualValue, MaxTreeHeightParameter.ActualValue);
90      Debug.Assert(result.Size <= MaxTreeSizeParameter.ActualValue.Value);
91      Debug.Assert(result.Height <= MaxTreeHeightParameter.ActualValue.Value);
92      Debug.Assert(grammar.IsValidExpression(result));
93      ChildParameter.ActualValue = result;
94      return base.Apply();
95    }
96
97    protected abstract SymbolicExpressionTree Cross(IRandom random, ISymbolicExpressionGrammar grammar,
98      SymbolicExpressionTree parent0, SymbolicExpressionTree parent1,
99      IntValue maxTreeSize, IntValue maxTreeHeight);
100  }
101}
Note: See TracBrowser for help on using the repository browser.