#region License Information /* HeuristicLab * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System.Linq; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Operators; using HeuristicLab.Optimization; using HeuristicLab.Parameters; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Interfaces; namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Creators { /// /// A base class for operators creating symbolic expression trees. /// [Item("SymbolicExpressionTreeCreator", "A base class for operators creating symbolic expression trees.")] [StorableClass] public abstract class SymbolicExpressionTreeCreator : SymbolicExpressionTreeOperator, ISymbolicExpressionTreeCreator { private const string MaxFunctionDefinitionsParameterName = "MaxFunctionDefinitions"; private const string MaxFunctionArgumentsParameterName = "MaxFunctionArguments"; private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree"; #region Parameter Properties public IValueLookupParameter MaxFunctionDefinitionsParameter { get { return (IValueLookupParameter)Parameters[MaxFunctionDefinitionsParameterName]; } } public IValueLookupParameter MaxFunctionArgumentsParameter { get { return (IValueLookupParameter)Parameters[MaxFunctionArgumentsParameterName]; } } public ILookupParameter SymbolicExpressionTreeParameter { get { return (ILookupParameter)Parameters[SymbolicExpressionTreeParameterName]; } } #endregion #region Propeties public IntValue MaxFunctionDefinitions { get { return MaxFunctionDefinitionsParameter.ActualValue; } } public IntValue MaxFunctionArguments { get { return MaxFunctionArgumentsParameter.ActualValue; } } public SymbolicExpressionTree SymbolicExpressionTree { get { return SymbolicExpressionTreeParameter.ActualValue; } set { SymbolicExpressionTreeParameter.ActualValue = value; } } #endregion protected SymbolicExpressionTreeCreator() : base() { Parameters.Add(new ValueLookupParameter(MaxFunctionDefinitionsParameterName, "Maximal number of function definitions in the symbolic expression tree.")); Parameters.Add(new ValueLookupParameter(MaxFunctionArgumentsParameterName, "Maximal number of arguments of automatically defined functions in the symbolic expression tree.")); Parameters.Add(new LookupParameter(SymbolicExpressionTreeParameterName, "The symbolic expression tree that should be created.")); } public sealed override IOperation Apply() { SymbolicExpressionTree = Create(Random, SymbolicExpressionGrammar, MaxTreeSize, MaxTreeHeight, MaxFunctionDefinitions, MaxFunctionArguments); return null; } protected abstract SymbolicExpressionTree Create( IRandom random, ISymbolicExpressionGrammar grammar, IntValue maxTreeSize, IntValue maxTreeHeight, IntValue maxFunctionDefinitions, IntValue maxFunctionArguments ); } }