Free cookie consent management tool by TermsFeed Policy Generator

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

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

Fixed bugs related to dynamic symbol constraints with ADFs. #290 (Implement ADFs)

File size: 4.3 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 : SymbolicExpressionTreeOperator, ICrossover {
38    private const string ParentsParameterName = "Parents";
39    private const string ChildParameterName = "Child";
40    private const string FailedCrossoverEventsParameterName = "FailedCrossoverEvents";
41    public ILookupParameter<ItemArray<SymbolicExpressionTree>> ParentsParameter {
42      get { return (SubScopesLookupParameter<SymbolicExpressionTree>)Parameters[ParentsParameterName]; }
43    }
44    public ILookupParameter<SymbolicExpressionTree> ChildParameter {
45      get { return (ILookupParameter<SymbolicExpressionTree>)Parameters[ChildParameterName]; }
46    }
47    public IValueParameter<IntValue> FailedCrossoverEventsParameter {
48      get { return (ValueParameter<IntValue>)Parameters[FailedCrossoverEventsParameterName]; }
49    }
50
51    public IntValue FailedCrossoverEvents {
52      get { return FailedCrossoverEventsParameter.Value; }
53    }
54    protected SymbolicExpressionTreeCrossover()
55      : base() {
56      Parameters.Add(new SubScopesLookupParameter<SymbolicExpressionTree>(ParentsParameterName, "The parent symbolic expression trees which should be crossed."));
57      Parameters.Add(new LookupParameter<SymbolicExpressionTree>(ChildParameterName, "The child symbolic expression tree resulting from the crossover."));
58      Parameters.Add(new ValueParameter<IntValue>(FailedCrossoverEventsParameterName, "The number of failed crossover events (child is an exact copy of a parent)", new IntValue()));
59    }
60
61    public sealed override IOperation Apply() {
62      if (ParentsParameter.ActualValue.Length != 2)
63        throw new ArgumentException("Number of parents must be exactly two for symbolic expression tree crossover operators.");
64
65      SymbolicExpressionTree parent0 = ParentsParameter.ActualValue[0];
66      SymbolicExpressionTree parent1 = ParentsParameter.ActualValue[1];
67
68      IRandom random = RandomParameter.ActualValue;
69
70      // randomly swap parents to remove a possible bias from selection (e.g. when using gender-specific selection)
71      if (random.NextDouble() < 0.5) {
72        var tmp = parent0;
73        parent0 = parent1;
74        parent1 = tmp;
75      }
76
77      bool success;
78      SymbolicExpressionTree result = Cross(random, parent0, parent1,
79        MaxTreeSizeParameter.ActualValue, MaxTreeHeightParameter.ActualValue, out success);
80     
81      if (!success) FailedCrossoverEvents.Value++;
82
83      Debug.Assert(result.Size <= MaxTreeSizeParameter.ActualValue.Value);
84      Debug.Assert(result.Height <= MaxTreeHeightParameter.ActualValue.Value);
85      // Debug.Assert(grammar.IsValidExpression(result));
86      ChildParameter.ActualValue = result;
87      return base.Apply();
88    }
89
90    protected abstract SymbolicExpressionTree Cross(IRandom random,
91      SymbolicExpressionTree parent0, SymbolicExpressionTree parent1,
92      IntValue maxTreeSize, IntValue maxTreeHeight, out bool success);
93  }
94}
Note: See TracBrowser for help on using the repository browser.