[3294] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3294] | 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;
|
---|
[4722] | 24 | using HeuristicLab.Common;
|
---|
[3294] | 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
[16565] | 27 | using HEAL.Attic;
|
---|
[12422] | 28 | using HeuristicLab.Random;
|
---|
[3294] | 29 |
|
---|
[5499] | 30 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
|
---|
[3294] | 31 | /// <summary>
|
---|
| 32 | /// Manipulates a symbolic expression by deleting a preexisting function-defining branch.
|
---|
| 33 | /// As described in Koza, Bennett, Andre, Keane, Genetic Programming III - Darwinian Invention and Problem Solving, 1999, pp. 108
|
---|
| 34 | /// </summary>
|
---|
[5510] | 35 | [Item("SubroutineDeleter", "Manipulates a symbolic expression by deleting a preexisting function-defining branch. As described in Koza, Bennett, Andre, Keane, Genetic Programming III - Darwinian Invention and Problem Solving, 1999, pp. 108")]
|
---|
[16565] | 36 | [StorableType("A4AB4A79-F013-4DF4-847D-5F2C171859A7")]
|
---|
[3534] | 37 | public sealed class SubroutineDeleter : SymbolicExpressionTreeArchitectureManipulator {
|
---|
[4722] | 38 | [StorableConstructor]
|
---|
[16565] | 39 | private SubroutineDeleter(StorableConstructorFlag _) : base(_) { }
|
---|
[4722] | 40 | private SubroutineDeleter(SubroutineDeleter original, Cloner cloner) : base(original, cloner) { }
|
---|
| 41 | public SubroutineDeleter() : base() { }
|
---|
| 42 |
|
---|
| 43 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 44 | return new SubroutineDeleter(this, cloner);
|
---|
| 45 | }
|
---|
| 46 |
|
---|
[3294] | 47 | public override sealed void ModifyArchitecture(
|
---|
| 48 | IRandom random,
|
---|
[5510] | 49 | ISymbolicExpressionTree symbolicExpressionTree,
|
---|
| 50 | IntValue maxFunctionDefinitions, IntValue maxFunctionArguments) {
|
---|
| 51 | DeleteSubroutine(random, symbolicExpressionTree, maxFunctionDefinitions.Value, maxFunctionArguments.Value);
|
---|
[3294] | 52 | }
|
---|
| 53 |
|
---|
| 54 | public static bool DeleteSubroutine(
|
---|
| 55 | IRandom random,
|
---|
[5510] | 56 | ISymbolicExpressionTree symbolicExpressionTree,
|
---|
| 57 | int maxFunctionDefinitions, int maxFunctionArguments) {
|
---|
[12422] | 58 | var functionDefiningBranches = symbolicExpressionTree.IterateNodesPrefix().OfType<DefunTreeNode>().ToList();
|
---|
[3294] | 59 |
|
---|
[12422] | 60 | if (!functionDefiningBranches.Any())
|
---|
[3294] | 61 | // no ADF to delete => abort
|
---|
| 62 | return false;
|
---|
[12422] | 63 |
|
---|
| 64 | var selectedDefunBranch = functionDefiningBranches.SampleRandom(random);
|
---|
[3294] | 65 | // remove the selected defun
|
---|
[5733] | 66 | int defunSubtreeIndex = symbolicExpressionTree.Root.IndexOfSubtree(selectedDefunBranch);
|
---|
| 67 | symbolicExpressionTree.Root.RemoveSubtree(defunSubtreeIndex);
|
---|
[3294] | 68 |
|
---|
| 69 | // remove references to deleted function
|
---|
[5733] | 70 | foreach (var subtree in symbolicExpressionTree.Root.Subtrees.OfType<SymbolicExpressionTreeTopLevelNode>()) {
|
---|
[3360] | 71 | var matchingInvokeSymbol = (from symb in subtree.Grammar.Symbols.OfType<InvokeFunction>()
|
---|
| 72 | where symb.FunctionName == selectedDefunBranch.FunctionName
|
---|
| 73 | select symb).SingleOrDefault();
|
---|
| 74 | if (matchingInvokeSymbol != null) {
|
---|
| 75 | subtree.Grammar.RemoveSymbol(matchingInvokeSymbol);
|
---|
[3294] | 76 | }
|
---|
| 77 | }
|
---|
[3360] | 78 |
|
---|
| 79 | DeletionByRandomRegeneration(random, symbolicExpressionTree, selectedDefunBranch);
|
---|
[3294] | 80 | return true;
|
---|
| 81 | }
|
---|
[3360] | 82 |
|
---|
[5510] | 83 | private static void DeletionByRandomRegeneration(IRandom random, ISymbolicExpressionTree symbolicExpressionTree, DefunTreeNode selectedDefunBranch) {
|
---|
[3360] | 84 | // find first invocation and replace it with a randomly generated tree
|
---|
| 85 | // can't find all invocations in one step because once we replaced a top level invocation
|
---|
| 86 | // the invocations below it are removed already
|
---|
| 87 | var invocationCutPoint = (from node in symbolicExpressionTree.IterateNodesPrefix()
|
---|
[5733] | 88 | from subtree in node.Subtrees.OfType<InvokeFunctionTreeNode>()
|
---|
[3360] | 89 | where subtree.Symbol.FunctionName == selectedDefunBranch.FunctionName
|
---|
[5686] | 90 | select new CutPoint(node, subtree)).FirstOrDefault();
|
---|
[3360] | 91 | while (invocationCutPoint != null) {
|
---|
| 92 | // deletion by random regeneration
|
---|
[5510] | 93 | ISymbolicExpressionTreeNode replacementTree = null;
|
---|
[5686] | 94 | var allowedSymbolsList = invocationCutPoint.Parent.Grammar.GetAllowedChildSymbols(invocationCutPoint.Parent.Symbol, invocationCutPoint.ChildIndex).ToList();
|
---|
[5411] | 95 | var weights = allowedSymbolsList.Select(s => s.InitialFrequency);
|
---|
[12422] | 96 |
|
---|
| 97 | #pragma warning disable 612, 618
|
---|
[5411] | 98 | var selectedSymbol = allowedSymbolsList.SelectRandom(weights, random);
|
---|
[12422] | 99 | #pragma warning restore 612, 618
|
---|
[3360] | 100 |
|
---|
[12422] | 101 |
|
---|
[5686] | 102 | int minPossibleLength = invocationCutPoint.Parent.Grammar.GetMinimumExpressionLength(selectedSymbol);
|
---|
| 103 | int maxLength = Math.Max(minPossibleLength, invocationCutPoint.Child.GetLength());
|
---|
| 104 | int minPossibleDepth = invocationCutPoint.Parent.Grammar.GetMinimumExpressionDepth(selectedSymbol);
|
---|
| 105 | int maxDepth = Math.Max(minPossibleDepth, invocationCutPoint.Child.GetDepth());
|
---|
[3369] | 106 | replacementTree = selectedSymbol.CreateTreeNode();
|
---|
[3535] | 107 | if (replacementTree.HasLocalParameters)
|
---|
| 108 | replacementTree.ResetLocalParameters(random);
|
---|
[5733] | 109 | invocationCutPoint.Parent.RemoveSubtree(invocationCutPoint.ChildIndex);
|
---|
| 110 | invocationCutPoint.Parent.InsertSubtree(invocationCutPoint.ChildIndex, replacementTree);
|
---|
[3360] | 111 |
|
---|
[5686] | 112 | ProbabilisticTreeCreator.PTC2(random, replacementTree, maxLength, maxDepth);
|
---|
[3369] | 113 |
|
---|
[3360] | 114 | invocationCutPoint = (from node in symbolicExpressionTree.IterateNodesPrefix()
|
---|
[5733] | 115 | from subtree in node.Subtrees.OfType<InvokeFunctionTreeNode>()
|
---|
[3360] | 116 | where subtree.Symbol.FunctionName == selectedDefunBranch.FunctionName
|
---|
[5686] | 117 | select new CutPoint(node, subtree)).FirstOrDefault();
|
---|
[3360] | 118 | }
|
---|
| 119 | }
|
---|
[3294] | 120 | }
|
---|
| 121 | }
|
---|