Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Crossovers/SymbolicExpressionTreeCrossover.cs @ 7259

Last change on this file since 7259 was 7259, checked in by swagner, 12 years ago

Updated year of copyrights to 2012 (#1716)

File size: 3.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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 System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
30  /// <summary>
31  /// A base class for operators that perform a crossover of symbolic expression trees.
32  /// </summary>
33  [Item("SymbolicExpressionTreeCrossover", "A base class for operators that perform a crossover of symbolic expression trees.")]
34  [StorableClass]
35  public abstract class SymbolicExpressionTreeCrossover : SymbolicExpressionTreeOperator, ISymbolicExpressionTreeCrossover {
36    private const string ParentsParameterName = "Parents";
37    private const string ChildParameterName = "Child";
38    #region Parameter Properties
39    public ILookupParameter<ItemArray<ISymbolicExpressionTree>> ParentsParameter {
40      get { return (ScopeTreeLookupParameter<ISymbolicExpressionTree>)Parameters[ParentsParameterName]; }
41    }
42    public ILookupParameter<ISymbolicExpressionTree> ChildParameter {
43      get { return (ILookupParameter<ISymbolicExpressionTree>)Parameters[ChildParameterName]; }
44    }
45    #endregion
46    #region Properties
47    public ItemArray<ISymbolicExpressionTree> Parents {
48      get { return ParentsParameter.ActualValue; }
49    }
50    public ISymbolicExpressionTree Child {
51      get { return ChildParameter.ActualValue; }
52      set { ChildParameter.ActualValue = value; }
53    }
54    #endregion
55    [StorableConstructor]
56    protected SymbolicExpressionTreeCrossover(bool deserializing) : base(deserializing) { }
57    protected SymbolicExpressionTreeCrossover(SymbolicExpressionTreeCrossover original, Cloner cloner) : base(original, cloner) { }
58    protected SymbolicExpressionTreeCrossover()
59      : base() {
60      Parameters.Add(new ScopeTreeLookupParameter<ISymbolicExpressionTree>(ParentsParameterName, "The parent symbolic expression trees which should be crossed."));
61      Parameters.Add(new LookupParameter<ISymbolicExpressionTree>(ChildParameterName, "The child symbolic expression tree resulting from the crossover."));
62    }
63
64    public sealed override IOperation Apply() {
65      if (Parents.Length != 2)
66        throw new ArgumentException("Number of parents must be exactly two for symbolic expression tree crossover operators.");
67
68      ISymbolicExpressionTree result = Cross(Random, Parents[0], Parents[1]);
69
70      Child = result;
71      return base.Apply();
72    }
73
74    protected abstract ISymbolicExpressionTree Cross(IRandom random,
75      ISymbolicExpressionTree parent0, ISymbolicExpressionTree parent1);
76  }
77}
Note: See TracBrowser for help on using the repository browser.