Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Creators/SymbolicExpressionTreeCreator.cs @ 3534

Last change on this file since 3534 was 3534, checked in by gkronber, 14 years ago

Added interfaces for symbolic expression tree operators and added multi manipulation operators. #937 (Data types and operators for symbolic expression tree encoding)

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