1 | #region License Information
|
---|
2 |
|
---|
3 | /* HeuristicLab
|
---|
4 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
5 | *
|
---|
6 | * This file is part of HeuristicLab.
|
---|
7 | *
|
---|
8 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
9 | * it under the terms of the GNU General Public License as published by
|
---|
10 | * the Free Software Foundation, either version 3 of the License, or
|
---|
11 | * (at your option) any later version.
|
---|
12 | *
|
---|
13 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | * GNU General Public License for more details.
|
---|
17 | *
|
---|
18 | * You should have received a copy of the GNU General Public License
|
---|
19 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #endregion
|
---|
23 | using System;
|
---|
24 | using System.Collections.Generic;
|
---|
25 | using System.Linq;
|
---|
26 | using HEAL.Attic;
|
---|
27 | using HeuristicLab.Common;
|
---|
28 | using HeuristicLab.Core;
|
---|
29 | using HeuristicLab.Data;
|
---|
30 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
31 | using HeuristicLab.Parameters;
|
---|
32 |
|
---|
33 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
34 | [StorableType("C8539434-6FB0-47D0-9F5A-2CAE5D8B8B4F")]
|
---|
35 | [Item("Interval Arithmetic Bounds Estimator", "Interpreter for calculation of intervals of symbolic models.")]
|
---|
36 | public sealed class IntervalArithBoundsEstimator : ParameterizedNamedItem, IBoundsEstimator {
|
---|
37 | #region Parameters
|
---|
38 |
|
---|
39 | private const string EvaluatedSolutionsParameterName = "EvaluatedSolutions";
|
---|
40 |
|
---|
41 | public IFixedValueParameter<IntValue> EvaluatedSolutionsParameter =>
|
---|
42 | (IFixedValueParameter<IntValue>)Parameters[EvaluatedSolutionsParameterName];
|
---|
43 |
|
---|
44 | public int EvaluatedSolutions {
|
---|
45 | get => EvaluatedSolutionsParameter.Value.Value;
|
---|
46 | set => EvaluatedSolutionsParameter.Value.Value = value;
|
---|
47 | }
|
---|
48 | #endregion
|
---|
49 |
|
---|
50 | #region Constructors
|
---|
51 |
|
---|
52 | [StorableConstructor]
|
---|
53 | private IntervalArithBoundsEstimator(StorableConstructorFlag _) : base(_) { }
|
---|
54 |
|
---|
55 | protected IntervalArithBoundsEstimator(IntervalArithBoundsEstimator original, Cloner cloner) : base(original, cloner) { }
|
---|
56 |
|
---|
57 | public IntervalArithBoundsEstimator() : base("Interval Arithmetic Bounds Estimator",
|
---|
58 | "Estimates the bounds of the model with interval arithmetic") {
|
---|
59 | Parameters.Add(new FixedValueParameter<IntValue>(EvaluatedSolutionsParameterName,
|
---|
60 | "A counter for the total number of solutions the estimator has evaluated.", new IntValue(0)));
|
---|
61 | }
|
---|
62 |
|
---|
63 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
64 | return new IntervalArithBoundsEstimator(this, cloner);
|
---|
65 | }
|
---|
66 |
|
---|
67 | #endregion
|
---|
68 |
|
---|
69 | #region IStatefulItem Members
|
---|
70 |
|
---|
71 | private readonly object syncRoot = new object();
|
---|
72 |
|
---|
73 | public void InitializeState() {
|
---|
74 | EvaluatedSolutions = 0;
|
---|
75 | }
|
---|
76 |
|
---|
77 | public void ClearState() { }
|
---|
78 |
|
---|
79 | #endregion
|
---|
80 |
|
---|
81 | #region Evaluation
|
---|
82 |
|
---|
83 | private static Instruction[] PrepareInterpreterState(
|
---|
84 | ISymbolicExpressionTree tree,
|
---|
85 | IDictionary<string, Interval> variableRanges) {
|
---|
86 | if (variableRanges == null)
|
---|
87 | throw new ArgumentNullException("No variable ranges are present!", nameof(variableRanges));
|
---|
88 |
|
---|
89 | // Check if all variables used in the tree are present in the dataset
|
---|
90 | foreach (var variable in tree.IterateNodesPrefix().OfType<VariableTreeNode>().Select(n => n.VariableName)
|
---|
91 | .Distinct())
|
---|
92 | if (!variableRanges.ContainsKey(variable))
|
---|
93 | throw new InvalidOperationException($"No ranges for variable {variable} is present");
|
---|
94 |
|
---|
95 | var code = SymbolicExpressionTreeCompiler.Compile(tree, OpCodes.MapSymbolToOpCode);
|
---|
96 | foreach (var instr in code.Where(i => i.opCode == OpCodes.Variable)) {
|
---|
97 | var variableTreeNode = (VariableTreeNode)instr.dynamicNode;
|
---|
98 | instr.data = variableRanges[variableTreeNode.VariableName];
|
---|
99 | }
|
---|
100 |
|
---|
101 | return code;
|
---|
102 | }
|
---|
103 |
|
---|
104 | // Use ref parameter, because the tree will be iterated through recursively from the left-side branch to the right side
|
---|
105 | // Update instructionCounter, whenever Evaluate is called
|
---|
106 | public static Interval Evaluate(
|
---|
107 | Instruction[] instructions, ref int instructionCounter,
|
---|
108 | IDictionary<ISymbolicExpressionTreeNode, Interval> nodeIntervals = null,
|
---|
109 | IDictionary<string, Interval> variableIntervals = null) {
|
---|
110 | var currentInstr = instructions[instructionCounter];
|
---|
111 | instructionCounter++;
|
---|
112 | Interval result;
|
---|
113 |
|
---|
114 | switch (currentInstr.opCode) {
|
---|
115 | case OpCodes.Variable: {
|
---|
116 | var variableTreeNode = (VariableTreeNode)currentInstr.dynamicNode;
|
---|
117 | var weightInterval = new Interval(variableTreeNode.Weight, variableTreeNode.Weight);
|
---|
118 |
|
---|
119 | Interval variableInterval;
|
---|
120 | if (variableIntervals != null && variableIntervals.ContainsKey(variableTreeNode.VariableName))
|
---|
121 | variableInterval = variableIntervals[variableTreeNode.VariableName];
|
---|
122 | else
|
---|
123 | variableInterval = (Interval)currentInstr.data;
|
---|
124 |
|
---|
125 | result = Interval.Multiply(variableInterval, weightInterval);
|
---|
126 | break;
|
---|
127 | }
|
---|
128 | case OpCodes.Constant: {
|
---|
129 | var constTreeNode = (ConstantTreeNode)currentInstr.dynamicNode;
|
---|
130 | result = new Interval(constTreeNode.Value, constTreeNode.Value);
|
---|
131 | break;
|
---|
132 | }
|
---|
133 | case OpCodes.Add: {
|
---|
134 | result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
135 | for (var i = 1; i < currentInstr.nArguments; i++) {
|
---|
136 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
137 | result = Interval.Add(result, argumentInterval);
|
---|
138 | }
|
---|
139 |
|
---|
140 | break;
|
---|
141 | }
|
---|
142 | case OpCodes.Sub: {
|
---|
143 | result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
144 | if (currentInstr.nArguments == 1)
|
---|
145 | result = Interval.Multiply(new Interval(-1, -1), result);
|
---|
146 |
|
---|
147 | for (var i = 1; i < currentInstr.nArguments; i++) {
|
---|
148 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
149 | result = Interval.Subtract(result, argumentInterval);
|
---|
150 | }
|
---|
151 |
|
---|
152 | break;
|
---|
153 | }
|
---|
154 | case OpCodes.Mul: {
|
---|
155 | result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
156 | for (var i = 1; i < currentInstr.nArguments; i++) {
|
---|
157 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
158 | result = Interval.Multiply(result, argumentInterval);
|
---|
159 | }
|
---|
160 |
|
---|
161 | break;
|
---|
162 | }
|
---|
163 | case OpCodes.Div: {
|
---|
164 | result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
165 | if (currentInstr.nArguments == 1)
|
---|
166 | result = Interval.Divide(new Interval(1, 1), result);
|
---|
167 |
|
---|
168 | for (var i = 1; i < currentInstr.nArguments; i++) {
|
---|
169 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
170 | result = Interval.Divide(result, argumentInterval);
|
---|
171 | }
|
---|
172 |
|
---|
173 | break;
|
---|
174 | }
|
---|
175 | case OpCodes.Sin: {
|
---|
176 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
177 | result = Interval.Sine(argumentInterval);
|
---|
178 | break;
|
---|
179 | }
|
---|
180 | case OpCodes.Cos: {
|
---|
181 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
182 | result = Interval.Cosine(argumentInterval);
|
---|
183 | break;
|
---|
184 | }
|
---|
185 | case OpCodes.Tan: {
|
---|
186 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
187 | result = Interval.Tangens(argumentInterval);
|
---|
188 | break;
|
---|
189 | }
|
---|
190 | case OpCodes.Tanh: {
|
---|
191 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
192 | result = Interval.HyperbolicTangent(argumentInterval);
|
---|
193 | break;
|
---|
194 | }
|
---|
195 | case OpCodes.Log: {
|
---|
196 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
197 | result = Interval.Logarithm(argumentInterval);
|
---|
198 | break;
|
---|
199 | }
|
---|
200 | case OpCodes.Exp: {
|
---|
201 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
202 | result = Interval.Exponential(argumentInterval);
|
---|
203 | break;
|
---|
204 | }
|
---|
205 | case OpCodes.Square: {
|
---|
206 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
207 | result = Interval.Square(argumentInterval);
|
---|
208 | break;
|
---|
209 | }
|
---|
210 | case OpCodes.SquareRoot: {
|
---|
211 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
212 | result = Interval.SquareRoot(argumentInterval);
|
---|
213 | break;
|
---|
214 | }
|
---|
215 | case OpCodes.Cube: {
|
---|
216 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
217 | result = Interval.Cube(argumentInterval);
|
---|
218 | break;
|
---|
219 | }
|
---|
220 | case OpCodes.CubeRoot: {
|
---|
221 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
222 | result = Interval.CubicRoot(argumentInterval);
|
---|
223 | break;
|
---|
224 | }
|
---|
225 | case OpCodes.Power: {
|
---|
226 | var a = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
227 | var b = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
228 | // support only integer powers
|
---|
229 | if (b.LowerBound == b.UpperBound && Math.Truncate(b.LowerBound) == b.LowerBound) {
|
---|
230 | result = Interval.Power(a, (int)b.LowerBound);
|
---|
231 | } else {
|
---|
232 | throw new NotSupportedException("Interval is only supported for integer powers");
|
---|
233 | }
|
---|
234 | break;
|
---|
235 | }
|
---|
236 | case OpCodes.Absolute: {
|
---|
237 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
238 | result = Interval.Absolute(argumentInterval);
|
---|
239 | break;
|
---|
240 | }
|
---|
241 | case OpCodes.AnalyticQuotient: {
|
---|
242 | result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
243 | for (var i = 1; i < currentInstr.nArguments; i++) {
|
---|
244 | var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
|
---|
245 | result = Interval.AnalyticQuotient(result, argumentInterval);
|
---|
246 | }
|
---|
247 |
|
---|
248 | break;
|
---|
249 | }
|
---|
250 | default:
|
---|
251 | throw new NotSupportedException(
|
---|
252 | $"The tree contains the unknown symbol {currentInstr.dynamicNode.Symbol}");
|
---|
253 | }
|
---|
254 |
|
---|
255 | if (!(nodeIntervals == null || nodeIntervals.ContainsKey(currentInstr.dynamicNode)))
|
---|
256 | nodeIntervals.Add(currentInstr.dynamicNode, result);
|
---|
257 |
|
---|
258 | return result;
|
---|
259 | }
|
---|
260 |
|
---|
261 | #endregion
|
---|
262 |
|
---|
263 | #region Helpers
|
---|
264 |
|
---|
265 | private static IDictionary<string, Interval> GetOccurringVariableRanges(
|
---|
266 | ISymbolicExpressionTree tree, IntervalCollection variableRanges) {
|
---|
267 | var variables = tree.IterateNodesPrefix().OfType<VariableTreeNode>().Select(v => v.VariableName).Distinct()
|
---|
268 | .ToList();
|
---|
269 |
|
---|
270 | return variables.ToDictionary(x => x, x => variableRanges.GetReadonlyDictionary()[x]);
|
---|
271 | }
|
---|
272 |
|
---|
273 | #endregion
|
---|
274 |
|
---|
275 | public Interval GetModelBound(ISymbolicExpressionTree tree, IntervalCollection variableRanges) {
|
---|
276 | lock (syncRoot) {
|
---|
277 | EvaluatedSolutions++;
|
---|
278 | }
|
---|
279 |
|
---|
280 | var occuringVariableRanges = GetOccurringVariableRanges(tree, variableRanges);
|
---|
281 | var instructions = PrepareInterpreterState(tree, occuringVariableRanges);
|
---|
282 | Interval resultInterval;
|
---|
283 | var instructionCounter = 0;
|
---|
284 | resultInterval = Evaluate(instructions, ref instructionCounter, variableIntervals: occuringVariableRanges);
|
---|
285 |
|
---|
286 | // because of numerical errors the bounds might be incorrect
|
---|
287 | if (resultInterval.IsInfiniteOrUndefined || resultInterval.LowerBound <= resultInterval.UpperBound)
|
---|
288 | return resultInterval;
|
---|
289 |
|
---|
290 | return new Interval(resultInterval.UpperBound, resultInterval.LowerBound);
|
---|
291 | }
|
---|
292 |
|
---|
293 | public IDictionary<ISymbolicExpressionTreeNode, Interval> GetModelNodeBounds(
|
---|
294 | ISymbolicExpressionTree tree, IntervalCollection variableRanges) {
|
---|
295 | throw new NotImplementedException();
|
---|
296 | }
|
---|
297 |
|
---|
298 | public double GetConstraintViolation(
|
---|
299 | ISymbolicExpressionTree tree, IntervalCollection variableRanges, ShapeConstraint constraint) {
|
---|
300 | var occuringVariableRanges = GetOccurringVariableRanges(tree, variableRanges);
|
---|
301 | var instructions = PrepareInterpreterState(tree, occuringVariableRanges);
|
---|
302 | var instructionCounter = 0;
|
---|
303 | var modelBound = Evaluate(instructions, ref instructionCounter, variableIntervals: occuringVariableRanges);
|
---|
304 | if (constraint.Interval.Contains(modelBound)) return 0.0;
|
---|
305 |
|
---|
306 |
|
---|
307 | var error = 0.0;
|
---|
308 |
|
---|
309 | if (!constraint.Interval.Contains(modelBound.LowerBound)) {
|
---|
310 | error += Math.Abs(modelBound.LowerBound - constraint.Interval.LowerBound);
|
---|
311 | }
|
---|
312 |
|
---|
313 | if (!constraint.Interval.Contains(modelBound.UpperBound)) {
|
---|
314 | error += Math.Abs(modelBound.UpperBound - constraint.Interval.UpperBound);
|
---|
315 | }
|
---|
316 |
|
---|
317 | return error;
|
---|
318 | }
|
---|
319 |
|
---|
320 |
|
---|
321 | public bool IsCompatible(ISymbolicExpressionTree tree) {
|
---|
322 | var containsUnknownSymbols = (
|
---|
323 | from n in tree.Root.GetSubtree(0).IterateNodesPrefix()
|
---|
324 | where
|
---|
325 | !(n.Symbol is Variable) &&
|
---|
326 | !(n.Symbol is Constant) &&
|
---|
327 | !(n.Symbol is StartSymbol) &&
|
---|
328 | !(n.Symbol is Addition) &&
|
---|
329 | !(n.Symbol is Subtraction) &&
|
---|
330 | !(n.Symbol is Multiplication) &&
|
---|
331 | !(n.Symbol is Division) &&
|
---|
332 | !(n.Symbol is Sine) &&
|
---|
333 | !(n.Symbol is Cosine) &&
|
---|
334 | !(n.Symbol is Tangent) &&
|
---|
335 | !(n.Symbol is HyperbolicTangent) &&
|
---|
336 | !(n.Symbol is Logarithm) &&
|
---|
337 | !(n.Symbol is Exponential) &&
|
---|
338 | !(n.Symbol is Square) &&
|
---|
339 | !(n.Symbol is SquareRoot) &&
|
---|
340 | !(n.Symbol is Cube) &&
|
---|
341 | !(n.Symbol is CubeRoot) &&
|
---|
342 | !(n.Symbol is Power) &&
|
---|
343 | !(n.Symbol is Absolute) &&
|
---|
344 | !(n.Symbol is AnalyticQuotient)
|
---|
345 | select n).Any();
|
---|
346 | return !containsUnknownSymbols;
|
---|
347 | }
|
---|
348 | }
|
---|
349 | } |
---|