Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Manipulators/SymbolicExpressionTreeManipulator.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 3.4 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.Encodings.SymbolicExpressionTreeEncoding.Interfaces;
25using HeuristicLab.Parameters;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Manipulators {
29  /// <summary>
30  /// A base class for operators that manipulate real-valued vectors.
31  /// </summary>
32  [Item("SymbolicExpressionTreeManipulator", "A base class for operators that manipulate symbolic expression trees.")]
33  [StorableClass]
34  public abstract class SymbolicExpressionTreeManipulator : SymbolicExpressionTreeOperator, ISymbolicExpressionTreeManipulator {
35    private const string FailedManipulationEventsParameterName = "FailedManipulationEvents";
36    private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
37
38    #region Parameter Properties
39    public IValueParameter<IntValue> FailedManipulationEventsParameter {
40      get { return (IValueParameter<IntValue>)Parameters[FailedManipulationEventsParameterName]; }
41    }
42    public ILookupParameter<SymbolicExpressionTree> SymbolicExpressionTreeParameter {
43      get { return (ILookupParameter<SymbolicExpressionTree>)Parameters[SymbolicExpressionTreeParameterName]; }
44    }
45    #endregion
46
47    #region Properties
48    public IntValue FailedManipulationEvents {
49      get { return FailedManipulationEventsParameter.Value; }
50    }
51    public SymbolicExpressionTree SymbolicExpressionTree {
52      get { return SymbolicExpressionTreeParameter.ActualValue; }
53    }
54    #endregion
55
56    public SymbolicExpressionTreeManipulator()
57      : base() {
58      Parameters.Add(new ValueParameter<IntValue>(FailedManipulationEventsParameterName, "The number of failed manipulation events.", new IntValue()));
59      Parameters.Add(new LookupParameter<SymbolicExpressionTree>(SymbolicExpressionTreeParameterName, "The symbolic expression tree on which the operator should be applied."));
60    }
61
62    public sealed override IOperation Apply() {
63      SymbolicExpressionTree tree = SymbolicExpressionTreeParameter.ActualValue;
64      bool success;
65      Manipulate(RandomParameter.ActualValue, tree, SymbolicExpressionGrammarParameter.ActualValue,
66        MaxTreeSizeParameter.ActualValue, MaxTreeHeightParameter.ActualValue, out success);
67
68      if (!success) FailedManipulationEvents.Value++;
69      return base.Apply();
70    }
71
72    protected abstract void Manipulate(IRandom random, SymbolicExpressionTree symbolicExpressionTree, ISymbolicExpressionGrammar grammar,
73      IntValue maxTreeSize, IntValue maxTreeHeight, out bool success);
74  }
75}
Note: See TracBrowser for help on using the repository browser.