Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ALPS/HeuristicLab.Optimization.Operators/3.3/ExpressionCalculator.cs @ 11586

Last change on this file since 11586 was 11586, checked in by pfleck, 10 years ago

#2269 Implemented LayerUpdator.

  • Added First/LastSubScopeProcessor.
  • Added two Calculators because ExpressionCalculator does not support required features yet.
  • Added some wiring.
  • Small bugfixes and refactorings.
File size: 3.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
22using System.Collections.Generic;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Operators;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Optimization.Operators {
31  /// <summary>
32  /// An operator that evaluates an expression.
33  /// </summary>
34  [Item("ExpressionCalculator", "An operator that evaluates an expression.")]
35  [StorableClass]
36  public class ExpressionCalculator : ValuesCollector {
37    [Storable]
38    public Calculator Calculator { get; set; }
39
40    #region Parameter Properties
41    public IValueLookupParameter<StringValue> ExpressionParameter {
42      get { return (IValueLookupParameter<StringValue>)Parameters["Expression"]; }
43    }
44    public IValueLookupParameter<IItem> ExpressionResultParameter {
45      get { return (IValueLookupParameter<IItem>)Parameters["ExpressionResult"]; }
46    }
47    #endregion
48
49    #region Properties
50    private string Formula {
51      get { return ExpressionParameter.Value.Value; }
52    }
53    private IItem ExpressionResult {
54      set { ExpressionResultParameter.ActualValue = value; }
55    }
56    #endregion
57
58    [StorableConstructor]
59    protected ExpressionCalculator(bool deserializing) : base(deserializing) { }
60    protected ExpressionCalculator(ExpressionCalculator original, Cloner cloner)
61      : base(original, cloner) {
62      this.Calculator = cloner.Clone(original.Calculator);
63    }
64    public ExpressionCalculator()
65      : base() {
66      Parameters.Add(new ValueLookupParameter<IItem>("ExpressionResult", "The result of the evaluated expression."));
67      Parameters.Add(new ValueLookupParameter<StringValue>("Expression",
68@"RPN formula for new value in postfix notation.
69
70This can contain the following elements:
71
72literals:
73  numbers, true, false, null and strings in single quotes
74variables (run parameters or results):
75  unquoted or in double quotes if they contain special characters or whitespace
76mathematical functions:
77  +, -, *, /, ^ (power), log
78predicates:
79  ==, <, >, isnull, not
80array index:
81  []
82stack manipulation:
83  drop swap dup
84string matching:
85  <string> <pattern> ismatch
86string replacing:
87  <string> <pattern> <replacement> rename
88conditionals:
89  <then> <else> <condition> if
90
91If the final value is null, the result variable is removed if it exists."));
92
93      Calculator = new Calculator();
94    }
95
96    public override IDeepCloneable Clone(Cloner cloner) {
97      return new ExpressionCalculator(this, cloner);
98    }
99
100    public override IOperation Apply() {
101      Calculator.Formula = Formula;
102      var variables = new Dictionary<string, IItem>();
103      foreach (var collectedValue in CollectedValues)
104        variables[collectedValue.Name] = collectedValue.ActualValue;
105      ExpressionResult = Calculator.GetValue(variables);
106      return base.Apply();
107    }
108  }
109}
Note: See TracBrowser for help on using the repository browser.