[3223] | 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 |
|
---|
[4722] | 22 | using HeuristicLab.Common;
|
---|
[3223] | 23 | using HeuristicLab.Core;
|
---|
| 24 | using HeuristicLab.Data;
|
---|
[4068] | 25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Interfaces;
|
---|
[3223] | 26 | using HeuristicLab.Parameters;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 |
|
---|
[3462] | 29 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Creators {
|
---|
[3223] | 30 | /// <summary>
|
---|
| 31 | /// A base class for operators creating symbolic expression trees.
|
---|
| 32 | /// </summary>
|
---|
| 33 | [Item("SymbolicExpressionTreeCreator", "A base class for operators creating symbolic expression trees.")]
|
---|
| 34 | [StorableClass]
|
---|
[3534] | 35 | public abstract class SymbolicExpressionTreeCreator : SymbolicExpressionTreeOperator, ISymbolicExpressionTreeCreator {
|
---|
[3338] | 36 | private const string MaxFunctionDefinitionsParameterName = "MaxFunctionDefinitions";
|
---|
| 37 | private const string MaxFunctionArgumentsParameterName = "MaxFunctionArguments";
|
---|
[3534] | 38 | private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
|
---|
[3338] | 39 | #region Parameter Properties
|
---|
| 40 | public IValueLookupParameter<IntValue> MaxFunctionDefinitionsParameter {
|
---|
| 41 | get { return (IValueLookupParameter<IntValue>)Parameters[MaxFunctionDefinitionsParameterName]; }
|
---|
| 42 | }
|
---|
| 43 | public IValueLookupParameter<IntValue> MaxFunctionArgumentsParameter {
|
---|
| 44 | get { return (IValueLookupParameter<IntValue>)Parameters[MaxFunctionArgumentsParameterName]; }
|
---|
| 45 | }
|
---|
[3534] | 46 | public ILookupParameter<SymbolicExpressionTree> SymbolicExpressionTreeParameter {
|
---|
| 47 | get { return (ILookupParameter<SymbolicExpressionTree>)Parameters[SymbolicExpressionTreeParameterName]; }
|
---|
| 48 | }
|
---|
[3338] | 49 | #endregion
|
---|
| 50 |
|
---|
| 51 | #region Propeties
|
---|
| 52 | public IntValue MaxFunctionDefinitions {
|
---|
| 53 | get { return MaxFunctionDefinitionsParameter.ActualValue; }
|
---|
| 54 | }
|
---|
| 55 | public IntValue MaxFunctionArguments {
|
---|
| 56 | get { return MaxFunctionArgumentsParameter.ActualValue; }
|
---|
| 57 | }
|
---|
[3534] | 58 | public SymbolicExpressionTree SymbolicExpressionTree {
|
---|
| 59 | get { return SymbolicExpressionTreeParameter.ActualValue; }
|
---|
| 60 | set { SymbolicExpressionTreeParameter.ActualValue = value; }
|
---|
| 61 | }
|
---|
[3338] | 62 |
|
---|
| 63 | #endregion
|
---|
[4722] | 64 | [StorableConstructor]
|
---|
| 65 | protected SymbolicExpressionTreeCreator(bool deserializing) : base(deserializing) { }
|
---|
| 66 | protected SymbolicExpressionTreeCreator(SymbolicExpressionTreeCreator original, Cloner cloner) : base(original, cloner) { }
|
---|
[3223] | 67 | protected SymbolicExpressionTreeCreator()
|
---|
| 68 | : base() {
|
---|
[3338] | 69 | Parameters.Add(new ValueLookupParameter<IntValue>(MaxFunctionDefinitionsParameterName, "Maximal number of function definitions in the symbolic expression tree."));
|
---|
| 70 | Parameters.Add(new ValueLookupParameter<IntValue>(MaxFunctionArgumentsParameterName, "Maximal number of arguments of automatically defined functions in the symbolic expression tree."));
|
---|
[3534] | 71 | Parameters.Add(new LookupParameter<SymbolicExpressionTree>(SymbolicExpressionTreeParameterName, "The symbolic expression tree that should be created."));
|
---|
[3223] | 72 | }
|
---|
| 73 |
|
---|
| 74 | public sealed override IOperation Apply() {
|
---|
[3534] | 75 | SymbolicExpressionTree = Create(Random, SymbolicExpressionGrammar,
|
---|
[3338] | 76 | MaxTreeSize, MaxTreeHeight, MaxFunctionDefinitions, MaxFunctionArguments);
|
---|
[4722] | 77 | return base.Apply();
|
---|
[3223] | 78 | }
|
---|
| 79 |
|
---|
[3338] | 80 | protected abstract SymbolicExpressionTree Create(
|
---|
| 81 | IRandom random,
|
---|
| 82 | ISymbolicExpressionGrammar grammar,
|
---|
| 83 | IntValue maxTreeSize, IntValue maxTreeHeight,
|
---|
| 84 | IntValue maxFunctionDefinitions, IntValue maxFunctionArguments
|
---|
| 85 | );
|
---|
[3223] | 86 | }
|
---|
| 87 | }
|
---|