[11407] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11407] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using HeuristicLab.Common;
|
---|
| 23 | using HeuristicLab.Core;
|
---|
| 24 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 25 | using HeuristicLab.Operators;
|
---|
| 26 | using HeuristicLab.Parameters;
|
---|
[16565] | 27 | using HEAL.Attic;
|
---|
[11407] | 28 |
|
---|
| 29 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
[13300] | 30 | [Item("SymbolicExpressionTreeSimplificationOperator", "Simplifies symbolic expression trees encoding a mathematical formula.")]
|
---|
[16565] | 31 | [StorableType("EEAB0E73-1F2D-459E-812B-C98E66FF3C63")]
|
---|
[13220] | 32 | public class SymbolicDataAnalysisExpressionTreeSimplificationOperator : SingleSuccessorOperator, ISymbolicExpressionTreeOperator {
|
---|
[11407] | 33 | private const string SymbolicExpressionTreeParameterName = "SymbolicExpressionTree";
|
---|
| 34 |
|
---|
| 35 | public ILookupParameter<ISymbolicExpressionTree> SymbolicExpressionTreeParameter {
|
---|
| 36 | get { return (ILookupParameter<ISymbolicExpressionTree>)Parameters[SymbolicExpressionTreeParameterName]; }
|
---|
| 37 | }
|
---|
| 38 |
|
---|
| 39 | [StorableConstructor]
|
---|
[16565] | 40 | protected SymbolicDataAnalysisExpressionTreeSimplificationOperator(StorableConstructorFlag _) : base(_) { }
|
---|
[11407] | 41 | protected SymbolicDataAnalysisExpressionTreeSimplificationOperator(SymbolicDataAnalysisExpressionTreeSimplificationOperator original, Cloner cloner)
|
---|
| 42 | : base(original, cloner) { }
|
---|
| 43 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 44 | return new SymbolicDataAnalysisExpressionTreeSimplificationOperator(this, cloner);
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | public SymbolicDataAnalysisExpressionTreeSimplificationOperator() {
|
---|
[13220] | 48 | Parameters.Add(new LookupParameter<ISymbolicExpressionTree>(SymbolicExpressionTreeParameterName, "The symbolic expression tree to simplify."));
|
---|
[11407] | 49 | }
|
---|
| 50 |
|
---|
| 51 | public override IOperation Apply() {
|
---|
| 52 | var tree = SymbolicExpressionTreeParameter.ActualValue;
|
---|
[14949] | 53 | var simplifiedTree = TreeSimplifier.Simplify(tree);
|
---|
| 54 | simplifiedTree = TreeSimplifier.Simplify(simplifiedTree);
|
---|
[11407] | 55 | SymbolicExpressionTreeParameter.ActualValue = simplifiedTree;
|
---|
| 56 |
|
---|
| 57 | return base.Apply();
|
---|
| 58 | }
|
---|
| 59 | }
|
---|
| 60 | }
|
---|