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 |
|
---|
22 | using System;
|
---|
23 | using System.Linq;
|
---|
24 | using HeuristicLab.Common;
|
---|
25 | using HeuristicLab.Core;
|
---|
26 | using HeuristicLab.Parameters;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 |
|
---|
29 | namespace 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 TracingSymbolicExpressionTreeCrossover : TracingSymbolicExpressionTreeOperator, ISymbolicExpressionTreeCrossover {
|
---|
36 | private const string ParentsParameterName = "Parents";
|
---|
37 | private const string ChildParameterName = "Child";
|
---|
38 |
|
---|
39 | #region Parameter Properties
|
---|
40 | public ILookupParameter<ItemArray<ISymbolicExpressionTree>> ParentsParameter {
|
---|
41 | get { return (ScopeTreeLookupParameter<ISymbolicExpressionTree>)Parameters[ParentsParameterName]; }
|
---|
42 | }
|
---|
43 | public ILookupParameter<ISymbolicExpressionTree> ChildParameter {
|
---|
44 | get { return (ILookupParameter<ISymbolicExpressionTree>)Parameters[ChildParameterName]; }
|
---|
45 | }
|
---|
46 | #endregion
|
---|
47 |
|
---|
48 | #region Properties
|
---|
49 | public ItemArray<ISymbolicExpressionTree> Parents {
|
---|
50 | get { return ParentsParameter.ActualValue; }
|
---|
51 | }
|
---|
52 | public ISymbolicExpressionTree Child {
|
---|
53 | get { return ChildParameter.ActualValue; }
|
---|
54 | set { ChildParameter.ActualValue = value; }
|
---|
55 | }
|
---|
56 | #endregion
|
---|
57 |
|
---|
58 | [StorableConstructor]
|
---|
59 | protected TracingSymbolicExpressionTreeCrossover(bool deserializing)
|
---|
60 | : base(deserializing) {
|
---|
61 | }
|
---|
62 | protected TracingSymbolicExpressionTreeCrossover(TracingSymbolicExpressionTreeCrossover original, Cloner cloner)
|
---|
63 | : base(original, cloner) {
|
---|
64 | }
|
---|
65 | protected TracingSymbolicExpressionTreeCrossover()
|
---|
66 | : base() {
|
---|
67 | Parameters.Add(new ScopeTreeLookupParameter<ISymbolicExpressionTree>(ParentsParameterName, "The parent symbolic expression trees which should be crossed."));
|
---|
68 | Parameters.Add(new LookupParameter<ISymbolicExpressionTree>(ChildParameterName, "The child symbolic expression tree resulting from the crossover."));
|
---|
69 |
|
---|
70 | }
|
---|
71 | public sealed override IOperation Apply() {
|
---|
72 | if (Parents.Length != 2)
|
---|
73 | throw new ArgumentException("Number of parents must be exactly two for symbolic expression tree crossover operators.");
|
---|
74 |
|
---|
75 | AddTracingVariablesToGlobalScope();
|
---|
76 |
|
---|
77 | // save the nodes of parent0 in a list so we can track what modifications are made by crossover
|
---|
78 | var nodes0 = Parents[0].IterateNodesBreadth().ToList();
|
---|
79 |
|
---|
80 | // perform crossover
|
---|
81 | Child = Crossover(Random, Parents[0], Parents[1]);
|
---|
82 |
|
---|
83 | // create another list of parent0's nodes, so we can compare it with the first list to see what changed
|
---|
84 | var nodes1 = Child.IterateNodesBreadth().ToList();
|
---|
85 |
|
---|
86 | // compare the two node lists and check the difference (comparing node references so we avoid false functional identity).
|
---|
87 | int i = 0, min = Math.Min(nodes0.Count, nodes1.Count);
|
---|
88 | while (i != min && ReferenceEquals(nodes0[i], nodes1[i])) ++i;
|
---|
89 |
|
---|
90 | // map child to its corresponding parents from the previous generation
|
---|
91 | GlobalTraceMap[Child] = new ItemList<IItem>(from p in Parents select GlobalCloneMap[p]);
|
---|
92 | var fragment0 = new Fragment(i == min ? null : nodes0[i]); // fragment replaced in Parent0
|
---|
93 | var fragment1 = new Fragment(i == min ? null : nodes1[i]); // fragment received from Parent1
|
---|
94 | GlobalFragmentMap[Child] = fragment1; // map child to the index of its fragment
|
---|
95 | // transaction.FragmentIn = the fragment received from the other parent
|
---|
96 | // transaction.FragmentOut = the fragment that got replaced
|
---|
97 | GlobalGeneticExchangeMap.Add(new GeneticExchange { FragmentIn = fragment1, FragmentOut = fragment0 });
|
---|
98 | return base.Apply();
|
---|
99 | }
|
---|
100 |
|
---|
101 | public abstract ISymbolicExpressionTree Crossover(IRandom random, ISymbolicExpressionTree parent0, ISymbolicExpressionTree parent1);
|
---|
102 | }
|
---|
103 | }
|
---|