Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Creators/SymbolicExpressionTreeCreator.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.9 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.Creators {
29  /// <summary>
30  /// A base class for operators creating symbolic expression trees.
31  /// </summary>
32  [Item("SymbolicExpressionTreeCreator", "A base class for operators creating symbolic expression trees.")]
33  [StorableClass]
34  public abstract class SymbolicExpressionTreeCreator : SymbolicExpressionTreeOperator, ISymbolicExpressionTreeCreator {
35    private const string MaxFunctionDefinitionsParameterName = "MaxFunctionDefinitions";
36    private const string MaxFunctionArgumentsParameterName = "MaxFunctionArguments";
37    private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
38    #region Parameter Properties
39    public IValueLookupParameter<IntValue> MaxFunctionDefinitionsParameter {
40      get { return (IValueLookupParameter<IntValue>)Parameters[MaxFunctionDefinitionsParameterName]; }
41    }
42    public IValueLookupParameter<IntValue> MaxFunctionArgumentsParameter {
43      get { return (IValueLookupParameter<IntValue>)Parameters[MaxFunctionArgumentsParameterName]; }
44    }
45    public ILookupParameter<SymbolicExpressionTree> SymbolicExpressionTreeParameter {
46      get { return (ILookupParameter<SymbolicExpressionTree>)Parameters[SymbolicExpressionTreeParameterName]; }
47    }
48    #endregion
49
50    #region Propeties
51    public IntValue MaxFunctionDefinitions {
52      get { return MaxFunctionDefinitionsParameter.ActualValue; }
53    }
54    public IntValue MaxFunctionArguments {
55      get { return MaxFunctionArgumentsParameter.ActualValue; }
56    }
57    public SymbolicExpressionTree SymbolicExpressionTree {
58      get { return SymbolicExpressionTreeParameter.ActualValue; }
59      set { SymbolicExpressionTreeParameter.ActualValue = value; }
60    }
61
62    #endregion
63    protected SymbolicExpressionTreeCreator()
64      : base() {
65      Parameters.Add(new ValueLookupParameter<IntValue>(MaxFunctionDefinitionsParameterName, "Maximal number of function definitions in the symbolic expression tree."));
66      Parameters.Add(new ValueLookupParameter<IntValue>(MaxFunctionArgumentsParameterName, "Maximal number of arguments of automatically defined functions in the symbolic expression tree."));
67      Parameters.Add(new LookupParameter<SymbolicExpressionTree>(SymbolicExpressionTreeParameterName, "The symbolic expression tree that should be created."));
68    }
69
70    public sealed override IOperation Apply() {
71      SymbolicExpressionTree = Create(Random, SymbolicExpressionGrammar,
72        MaxTreeSize, MaxTreeHeight, MaxFunctionDefinitions, MaxFunctionArguments);
73      return null;
74    }
75
76    protected abstract SymbolicExpressionTree Create(
77      IRandom random,
78      ISymbolicExpressionGrammar grammar,
79      IntValue maxTreeSize, IntValue maxTreeHeight,
80      IntValue maxFunctionDefinitions, IntValue maxFunctionArguments
81      );
82  }
83}
Note: See TracBrowser for help on using the repository browser.