#region License Information
/* HeuristicLab
* Copyright (C) 2002-2018 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 HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Data;
using HeuristicLab.Operators;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
///
/// An operator that outputs the length of a symbolic expression tree.
///
[Item("SymbolicExpressionTreeLengthCalculator", "An operator that outputs the length of a symbolic expression tree.")]
[StorableClass]
public sealed class SymbolicExpressionTreeLengthCalculator : SingleSuccessorOperator {
private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
private const string SymbolicExpressionTreeLengthParameterName = "SymbolicExpressionTreeLength";
#region parameter properties
public ILookupParameter SymbolicExpressionTreeParameter {
get { return (ILookupParameter)Parameters[SymbolicExpressionTreeParameterName]; }
}
public ILookupParameter SymbolicExpressionTreeLengthParameter {
get { return (ILookupParameter)Parameters[SymbolicExpressionTreeLengthParameterName]; }
}
#endregion
#region properties
public SymbolicExpressionTree SymbolicExpressionTree {
get { return SymbolicExpressionTreeParameter.ActualValue; }
}
public DoubleValue SymbolicExpressionTreeLength {
get { return SymbolicExpressionTreeLengthParameter.ActualValue; }
set { SymbolicExpressionTreeLengthParameter.ActualValue = value; }
}
#endregion
[StorableConstructor]
private SymbolicExpressionTreeLengthCalculator(bool deserializing) : base(deserializing) { }
private SymbolicExpressionTreeLengthCalculator(SymbolicExpressionTreeLengthCalculator original, Cloner cloner) : base(original, cloner) { }
public SymbolicExpressionTreeLengthCalculator()
: base() {
Parameters.Add(new LookupParameter(SymbolicExpressionTreeParameterName, "The symbolic expression tree whose length should be calculated."));
Parameters.Add(new LookupParameter(SymbolicExpressionTreeLengthParameterName, "The length of the symbolic expression tree."));
}
public override IOperation Apply() {
SymbolicExpressionTreeLength = new DoubleValue(SymbolicExpressionTree.Length);
return base.Apply();
}
public override IDeepCloneable Clone(Cloner cloner) {
return new SymbolicExpressionTreeLengthCalculator(this, cloner);
}
}
}