#region License Information
/* HeuristicLab
* Copyright (C) 2002-2008 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.Collections.Generic;
using System.Text;
using HeuristicLab.Core;
using HeuristicLab.GP.Interfaces;
using System.Xml;
namespace HeuristicLab.GP {
public class FunctionTree : IFunctionTree {
private List subTrees;
private IFunction function;
public FunctionTree() {
}
public FunctionTree(IFunction function) {
subTrees = new List();
this.function = function;
}
protected FunctionTree(FunctionTree original) {
this.function = original.Function;
this.subTrees = new List(original.SubTrees.Count);
foreach (IFunctionTree originalSubTree in original.SubTrees) {
this.SubTrees.Add((IFunctionTree)originalSubTree.Clone());
}
}
#region IFunctionTree Members
public virtual bool HasLocalParameters {
get { return false; }
}
public virtual IList SubTrees {
get { return subTrees; }
}
public IFunction Function {
get { return function; }
protected set { function = value; }
}
public int GetSize() {
int size = 1;
foreach (IFunctionTree tree in SubTrees) size += tree.GetSize();
return size;
}
public int GetHeight() {
int maxHeight = 0;
foreach (IFunctionTree tree in SubTrees) maxHeight = Math.Max(maxHeight, tree.GetHeight());
return maxHeight + 1;
}
public virtual IOperation CreateShakingOperation(IScope scope) {
return null;
}
public virtual IOperation CreateInitOperation(IScope scope) {
return null;
}
public void AddSubTree(IFunctionTree tree) {
SubTrees.Add(tree);
}
public virtual void InsertSubTree(int index, IFunctionTree tree) {
SubTrees.Insert(index, tree);
}
public virtual void RemoveSubTree(int index) {
SubTrees.RemoveAt(index);
}
public override string ToString() {
return Function.Name;
}
#endregion
#region IStorable Members
public Guid Guid {
get { throw new NotSupportedException(); }
}
public virtual object Clone() {
return new FunctionTree(this);
}
public object Clone(IDictionary clonedObjects) {
throw new NotImplementedException();
}
public virtual XmlNode GetXmlNode(string name, XmlDocument document, IDictionary persistedObjects) {
return null;
}
public virtual void Populate(XmlNode node, IDictionary restoredObjects) {
}
#endregion
}
}