#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;
using System.Linq;
using HeuristicLab.Collections;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Data;
using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Interfaces;
using HeuristicLab.Operators;
using HeuristicLab.Optimization;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
using HeuristicLab.PluginInfrastructure;
namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Manipulators {
[Item("MultiSymbolicExpressionTreeManipulator", "Randomly selects and applies one of its manipulators every time it is called.")]
[StorableClass]
public sealed class MultiSymbolicExpressionTreeManipulator : StochasticMultiBranch, ISymbolicExpressionTreeManipulator, IStochasticOperator {
private const string MaxTreeSizeParameterName = "MaxTreeSize";
private const string MaxTreeHeightParameterName = "MaxTreeHeight";
private const string SymbolicExpressionGrammarParameterName = "SymbolicExpressionGrammar";
private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
public override bool CanChangeName {
get { return false; }
}
protected override bool CreateChildOperation {
get { return true; }
}
#region ISymbolicExpressionTreeManipulator Members
public ILookupParameter SymbolicExpressionTreeParameter {
get { return (ILookupParameter)Parameters[SymbolicExpressionTreeParameterName]; }
}
#endregion
#region ISymbolicExpressionTreeOperator Members
public IValueLookupParameter MaxTreeSizeParameter {
get { return (IValueLookupParameter)Parameters[MaxTreeSizeParameterName]; }
}
public IValueLookupParameter MaxTreeHeightParameter {
get { return (IValueLookupParameter)Parameters[MaxTreeHeightParameterName]; }
}
public ILookupParameter SymbolicExpressionGrammarParameter {
get { return (ILookupParameter)Parameters[SymbolicExpressionGrammarParameterName]; }
}
#endregion
[StorableConstructor]
private MultiSymbolicExpressionTreeManipulator(bool deserializing) : base(deserializing) { }
private MultiSymbolicExpressionTreeManipulator(MultiSymbolicExpressionTreeManipulator original, Cloner cloner) : base(original, cloner) { }
public MultiSymbolicExpressionTreeManipulator()
: base() {
Parameters.Add(new LookupParameter(SymbolicExpressionTreeParameterName, "The symbolic expression tree on which the operator should be applied."));
Parameters.Add(new ValueLookupParameter(MaxTreeSizeParameterName, "The maximal size (number of nodes) of the symbolic expression tree."));
Parameters.Add(new ValueLookupParameter(MaxTreeHeightParameterName, "The maximal height of the symbolic expression tree (a tree with one node has height = 0)."));
Parameters.Add(new LookupParameter(SymbolicExpressionGrammarParameterName, "The grammar that defines the allowed symbols and syntax of the symbolic expression trees."));
foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(ISymbolicExpressionTreeManipulator))) {
if (!typeof(MultiOperator).IsAssignableFrom(type) && !typeof(ISymbolicExpressionTreeArchitectureManipulator).IsAssignableFrom(type))
Operators.Add((ISymbolicExpressionTreeManipulator)Activator.CreateInstance(type), true);
}
}
public override IDeepCloneable Clone(Cloner cloner) {
return new MultiSymbolicExpressionTreeManipulator(this, cloner);
}
protected override void Operators_ItemsReplaced(object sender, CollectionItemsChangedEventArgs> e) {
base.Operators_ItemsReplaced(sender, e);
ParameterizeManipulators();
}
protected override void Operators_ItemsAdded(object sender, CollectionItemsChangedEventArgs> e) {
base.Operators_ItemsAdded(sender, e);
ParameterizeManipulators();
}
private void ParameterizeManipulators() {
foreach (ISymbolicExpressionTreeManipulator manipulator in Operators.OfType()) {
manipulator.MaxTreeSizeParameter.ActualName = MaxTreeSizeParameter.Name;
manipulator.MaxTreeHeightParameter.ActualName = MaxTreeHeightParameter.Name;
manipulator.SymbolicExpressionGrammarParameter.ActualName = SymbolicExpressionGrammarParameter.Name;
manipulator.SymbolicExpressionTreeParameter.ActualName = SymbolicExpressionTreeParameter.Name;
}
foreach (IStochasticOperator manipulator in Operators.OfType()) {
manipulator.RandomParameter.ActualName = RandomParameter.Name;
}
}
}
}