#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.Collections.Generic;
using HeuristicLab.Core;
using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
using HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols;
using HeuristicLab.Common;
namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
[StorableClass]
[Item("BasicExpressionGrammar", "Represents a grammar for functional expressions using only arithmetic operations.")]
public class BasicExpressionGrammar : DefaultSymbolicExpressionGrammar {
[Storable]
private HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols.Variable variableSymbol;
[StorableConstructor]
protected BasicExpressionGrammar(bool deserializing) : base(deserializing) { }
protected BasicExpressionGrammar(BasicExpressionGrammar original, Cloner cloner)
: base(original, cloner) {
foreach (var symb in Symbols) {
var varSym = symb as HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols.Variable;
if (varSym != null) this.variableSymbol = varSym;
break;
}
}
public BasicExpressionGrammar()
: base() {
Initialize();
}
public override IDeepCloneable Clone(Cloner cloner) {
return new BasicExpressionGrammar(this, cloner);
}
private void Initialize() {
var add = new Addition();
var sub = new Subtraction();
var mul = new Multiplication();
var div = new Division();
var constant = new Constant();
var log = new Logarithm();
var exp = new Exponential();
constant.MinValue = -20;
constant.MaxValue = 20;
variableSymbol = new HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols.Variable();
var allSymbols = new List() { add, sub, mul, div, log, exp, constant, variableSymbol };
var arithSymbols = new List() { add, sub, mul, div };
var funSymbols = new List() { log, exp };
foreach (var symb in allSymbols)
AddSymbol(symb);
foreach (var funSymb in arithSymbols) {
SetMinSubtreeCount(funSymb, 2);
SetMaxSubtreeCount(funSymb, 2);
}
foreach (var funSymb in funSymbols) {
SetMinSubtreeCount(funSymb, 1);
SetMaxSubtreeCount(funSymb, 1);
}
SetMinSubtreeCount(constant, 0);
SetMaxSubtreeCount(constant, 0);
SetMinSubtreeCount(variableSymbol, 0);
SetMaxSubtreeCount(variableSymbol, 0);
// allow each symbol as child of the start symbol
foreach (var symb in allSymbols) {
SetAllowedChild(StartSymbol, symb, 0);
}
// allow each symbol as child of every other symbol (except for terminals that have maxSubtreeCount == 0)
foreach (var parent in allSymbols) {
for (int i = 0; i < GetMaxSubtreeCount(parent); i++)
foreach (var child in allSymbols) {
SetAllowedChild(parent, child, i);
}
}
}
}
}