Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3073_IA_constraint_splitting/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/IntervalInterpreter.cs @ 17756

Last change on this file since 17756 was 17756, checked in by gkronber, 4 years ago

#3073 suggested refactoring / fix for splitting algorithm

File size: 25.1 KB
RevLine 
[16330]1#region License Information
[17631]2
[16330]3/* HeuristicLab
[17180]4 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[16330]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 */
[17631]21
[16330]22#endregion
23
24using System;
[16303]25using System.Collections.Generic;
[17637]26using System.Collections.ObjectModel;
[16303]27using System.Linq;
[17579]28using HEAL.Attic;
[16303]29using HeuristicLab.Common;
30using HeuristicLab.Core;
31using HeuristicLab.Data;
32using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
[16367]33using HeuristicLab.Parameters;
[16303]34
[16377]35namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
[16565]36  [StorableType("DE6C1E1E-D7C1-4070-847E-63B68562B10C")]
[17631]37  [Item("IntervalInterpreter", "Interpreter for calculation of intervals of symbolic models.")]
[16328]38  public sealed class IntervalInterpreter : ParameterizedNamedItem, IStatefulItem {
[16303]39    private const string EvaluatedSolutionsParameterName = "EvaluatedSolutions";
[17631]40    private const string MinSplittingWidthParameterName = "MinSplittingWidth";
41    private const string MaxSplittingDepthParameterName = "MaxSplittingDepth";
42    private const string UseIntervalSplittingParameterName = "UseIntervalSplitting";
[16330]43
[17631]44    public IFixedValueParameter<IntValue> EvaluatedSolutionsParameter =>
[17756]45      (IFixedValueParameter<IntValue>)Parameters[EvaluatedSolutionsParameterName];
[16303]46
[17631]47    public IFixedValueParameter<IntValue> MinSplittingWithParameter =>
[17756]48      (IFixedValueParameter<IntValue>)Parameters[MinSplittingWidthParameterName];
[17631]49
50    public IFixedValueParameter<IntValue> MaxSplittingDepthParameter =>
[17756]51      (IFixedValueParameter<IntValue>)Parameters[MaxSplittingDepthParameterName];
[17631]52
53    public IFixedValueParameter<BoolValue> UseIntervalSplittingParameter =>
[17756]54      (IFixedValueParameter<BoolValue>)Parameters[UseIntervalSplittingParameterName];
[17631]55
56    public int MinSplittingWidth {
57      get => MinSplittingWithParameter.Value.Value;
58      set => MinSplittingWithParameter.Value.Value = value;
59    }
60
61    public int MaxSplittingDepth {
62      get => MaxSplittingDepthParameter.Value.Value;
63      set => MaxSplittingDepthParameter.Value.Value = value;
64    }
65
66    public bool UseIntervalSplitting {
67      get => UseIntervalSplittingParameter.Value.Value;
68      set => UseIntervalSplittingParameter.Value.Value = value;
69    }
70
[16303]71    public int EvaluatedSolutions {
[17628]72      get => EvaluatedSolutionsParameter.Value.Value;
73      set => EvaluatedSolutionsParameter.Value.Value = value;
[16303]74    }
75
[16367]76    [StorableConstructor]
[16565]77    private IntervalInterpreter(StorableConstructorFlag _) : base(_) { }
[17631]78
[16328]79    private IntervalInterpreter(IntervalInterpreter original, Cloner cloner)
[17631]80      : base(original, cloner) { }
[17742]81
[16323]82    public IntervalInterpreter()
[17631]83      : base("IntervalInterpreter", "Interpreter for calculation of intervals of symbolic models.") {
84      Parameters.Add(new FixedValueParameter<IntValue>(EvaluatedSolutionsParameterName,
85        "A counter for the total number of solutions the interpreter has evaluated", new IntValue(0)));
[17742]86      Parameters.Add(new FixedValueParameter<IntValue>(MinSplittingWidthParameterName,
87        "Minimum interval width until splitting is stopped", new IntValue(0)));
88      Parameters.Add(new FixedValueParameter<IntValue>(MaxSplittingDepthParameterName,
89        "Maximum recursion depth of the splitting", new IntValue(5)));
[17631]90      Parameters.Add(new FixedValueParameter<BoolValue>(UseIntervalSplittingParameterName, "", new BoolValue(false)));
[16367]91    }
[17742]92
[16303]93    public override IDeepCloneable Clone(Cloner cloner) {
[16323]94      return new IntervalInterpreter(this, cloner);
[16303]95    }
96
[16330]97    private readonly object syncRoot = new object();
98
[16328]99    #region IStatefulItem Members
[17631]100
[16328]101    public void InitializeState() {
102      EvaluatedSolutions = 0;
103    }
[17631]104
[16328]105    public void ClearState() { }
[17631]106
[16328]107    #endregion
108
[17631]109    public Interval GetSymbolicExpressionTreeInterval(
110      ISymbolicExpressionTree tree, IDataset dataset,
[17756]111      IEnumerable<int> rows = null) {
[16403]112      var variableRanges = DatasetUtil.GetVariableRanges(dataset, rows);
[17637]113      return GetSymbolicExpressionTreeInterval(tree, variableRanges);
[16330]114    }
115
[17631]116    public Interval GetSymbolicExpressionTreeIntervals(
117      ISymbolicExpressionTree tree, IDataset dataset,
118      out IDictionary<ISymbolicExpressionTreeNode, Interval>
[17756]119        nodeIntervals, IEnumerable<int> rows = null) {
[16403]120      var variableRanges = DatasetUtil.GetVariableRanges(dataset, rows);
[17637]121      return GetSymbolicExpressionTreeIntervals(tree, variableRanges, out nodeIntervals);
[16328]122    }
123
[17631]124    public Interval GetSymbolicExpressionTreeInterval(
125      ISymbolicExpressionTree tree,
[17756]126      IReadOnlyDictionary<string, Interval> variableRanges) {
[16364]127      lock (syncRoot) {
[16330]128        EvaluatedSolutions++;
129      }
[16328]130
[17631]131      Interval outputInterval;
132
[17637]133      if (UseIntervalSplitting) {
[17631]134        outputInterval = GetSymbolicExpressionTreeIntervals(tree, variableRanges,
[17756]135          out var _);
[17631]136      } else {
137        var instructionCount = 0;
138        var instructions = PrepareInterpreterState(tree, variableRanges);
139        outputInterval = Evaluate(instructions, ref instructionCount);
140      }
141
142      return outputInterval.LowerBound <= outputInterval.UpperBound
143        ? outputInterval
144        : new Interval(outputInterval.UpperBound, outputInterval.LowerBound);
[16328]145    }
146
[16364]147
[17631]148    public Interval GetSymbolicExpressionTreeIntervals(
149      ISymbolicExpressionTree tree,
[17637]150      IReadOnlyDictionary<string, Interval> variableRanges,
[17631]151      out IDictionary<ISymbolicExpressionTreeNode, Interval>
[17756]152        nodeIntervals) {
[16330]153      lock (syncRoot) {
154        EvaluatedSolutions++;
155      }
[17631]156
[16404]157      var intervals = new Dictionary<ISymbolicExpressionTreeNode, Interval>();
158      var instructions = PrepareInterpreterState(tree, variableRanges);
[16328]159
[17631]160      Interval outputInterval;
[17637]161      if (UseIntervalSplitting) {
[17631]162        var variables = tree.IterateNodesPrefix().OfType<VariableTreeNode>().Select(x => x.VariableName).Distinct()
163                            .ToList();
164        var containsDependencyProblem = ContainsVariableMultipleTimes(tree);
165
[17742]166        if (containsDependencyProblem) {
[17631]167          var currIndex = 0;
168          var currDepth = 0;
[17742]169          IDictionary<string, Interval> writeableVariableRanges =
170            variableRanges.ToDictionary(kvp => kvp.Key, kvp => kvp.Value);
171          //outputInterval = EvaluateRecursive(instructions, intervals, writeableVariableRanges, variables, MinSplittingWidth, MaxSplittingDepth,
172          //  ref currIndex, ref currDepth, tree);
[17756]173          outputInterval = EvaluateWithSplitting(instructions, intervals, writeableVariableRanges);
[17631]174        } else {
175          var instructionCount = 0;
176          outputInterval = Evaluate(instructions, ref instructionCount, intervals);
177        }
178      } else {
179        var instructionCount = 0;
180        outputInterval = Evaluate(instructions, ref instructionCount, intervals);
181      }
182
[16629]183      nodeIntervals = new Dictionary<ISymbolicExpressionTreeNode, Interval>();
[16740]184      foreach (var kvp in intervals) {
[16629]185        var interval = kvp.Value;
186        if (interval.IsInfiniteOrUndefined || interval.LowerBound <= interval.UpperBound)
187          nodeIntervals.Add(kvp.Key, interval);
188        else
189          nodeIntervals.Add(kvp.Key, new Interval(interval.UpperBound, interval.LowerBound));
190      }
[16404]191
[16629]192      // because of numerical errors the bounds might be incorrect
193      if (outputInterval.IsInfiniteOrUndefined || outputInterval.LowerBound <= outputInterval.UpperBound)
194        return outputInterval;
[17631]195
196      return new Interval(outputInterval.UpperBound, outputInterval.LowerBound);
[16328]197    }
198
[16364]199
[17631]200    private static Instruction[] PrepareInterpreterState(
201      ISymbolicExpressionTree tree,
[17637]202      IReadOnlyDictionary<string, Interval> variableRanges) {
[16404]203      if (variableRanges == null)
204        throw new ArgumentNullException("No variablew ranges are present!", nameof(variableRanges));
[16328]205
[16404]206      //Check if all variables used in the tree are present in the dataset
[17742]207      foreach (var variable in tree.IterateNodesPrefix().OfType<VariableTreeNode>().Select(n => n.VariableName)
208                                   .Distinct())
[17631]209        if (!variableRanges.ContainsKey(variable))
210          throw new InvalidOperationException($"No ranges for variable {variable} is present");
[16330]211
[17631]212      var code = SymbolicExpressionTreeCompiler.Compile(tree, OpCodes.MapSymbolToOpCode);
213      foreach (var instr in code.Where(i => i.opCode == OpCodes.Variable)) {
[17756]214        var variableTreeNode = (VariableTreeNode)instr.dynamicNode;
[16404]215        instr.data = variableRanges[variableTreeNode.VariableName];
[16303]216      }
[17631]217
[16330]218      return code;
[16303]219    }
220
[17742]221    public static Interval EvaluateWithSplitting(Instruction[] instructions,
222                                                 IDictionary<ISymbolicExpressionTreeNode, Interval> nodeIntervals,
[17756]223                                                 IDictionary<string, Interval> variableIntervals) {
224      var savedIntervals = variableIntervals.ToDictionary(entry => entry.Key, entry => entry.Value);
225      var min = FindBound(instructions, nodeIntervals, variableIntervals, minimization: true);
226      var max = FindBound(instructions, nodeIntervals, savedIntervals, minimization: false);
[17637]227
[17756]228      return new Interval(min, max);
[17742]229    }
230
[17756]231
232    private static double FindBound(Instruction[] instructions,
233                                    IDictionary<ISymbolicExpressionTreeNode, Interval> nodeIntervals,
234                                    IDictionary<string, Interval> variableIntervals, bool minimization = true) {
235      SortedSet<BoxBound> prioQ = new SortedSet<BoxBound>();
236
[17742]237      var ic = 0;
238      //Calculate full box
239      IReadOnlyDictionary<string, Interval> readonlyRanges = variableIntervals.ToDictionary(k => k.Key, k => k.Value);
[17756]240      var interval = Evaluate(instructions, ref ic, nodeIntervals, readonlyRanges);
241      // the order of keys in a dictionary is guaranteed to be the same order as values in a dictionary
242      // https://docs.microsoft.com/en-us/dotnet/api/system.collections.idictionary.keys?view=netcore-3.1#remarks
243      var box = variableIntervals.Values;
244      if(minimization) {
245        prioQ.Add(new BoxBound(box, interval.LowerBound));
246      } else {
247        prioQ.Add(new BoxBound(box, -interval.UpperBound));
248      }
[17742]249
[17756]250      // TODO a fixed limit for depth?!
[17742]251      for (var depth = 0; depth < 200; ++depth) {
[17756]252        var currentBound = prioQ.Min;
253        prioQ.Remove(currentBound);
[17742]254
[17756]255        var newBoxes = Split(currentBound.box);
[17742]256
[17756]257        foreach (var newBox in newBoxes) {
258          var intervalEnum = newBox.GetEnumerator();
259          var keyEnum = readonlyRanges.Keys.GetEnumerator();
260          while (intervalEnum.MoveNext() & keyEnum.MoveNext()) {
261            variableIntervals[keyEnum.Current] = intervalEnum.Current;
[17742]262          }
263
264          ic = 0;
265          var res = Evaluate(instructions, ref ic, nodeIntervals,
266            new ReadOnlyDictionary<string, Interval>(variableIntervals));
[17756]267          if (minimization) {
268            prioQ.Add(new BoxBound(newBox, interval.LowerBound));
269          } else {
270            prioQ.Add(new BoxBound(newBox, -interval.UpperBound));
271          }
[17742]272        }
273      }
274
[17756]275      return minimization ?
276        prioQ.First().bound :
277        -prioQ.First().bound;
[17742]278    }
279
280    private static IEnumerable<IEnumerable<Interval>> Split(List<Interval> box) {
[17756]281      var boxes = box.Select(region => region.Split()).Select(split => new List<Interval> { split.Item1, split.Item2 })
[17742]282                     .ToList();
283
284      return boxes.CartesianProduct();
285    }
286
[17756]287    // a multi-dimensional box with an associated bound
288    // boxbounds are ordered first by bound (smaller first), then by size of box (smaller first) then by extent in each dimension
289    private class BoxBound : IComparable<BoxBound> {
290      public List<Interval> box;
291      public double bound;
292      public BoxBound(IEnumerable<Interval> box, double bound) {
293        this.box = new List<Interval>(box);
294        this.bound = bound;
[17742]295      }
[17756]296      public int CompareTo(BoxBound other) {
297        if (bound != other.bound) return bound.CompareTo(other.bound);
298       
299        var thisSize = box.Aggregate(1.0, (current, dimExtent) => current * dimExtent.Width);
300        var otherSize = other.box.Aggregate(1.0, (current, dimExtent) => current * dimExtent.Width);
301        if (thisSize != otherSize) return thisSize.CompareTo(otherSize);
[17742]302
[17756]303        for(int i=0;i<box.Count;i++) {
304          if (box[i].Width != other.box[i].Width) return box[i].Width.CompareTo(other.box[i].Width);
[17742]305        }
[17756]306        return 0;
[17742]307      }
308    }
309
[17631]310    public static Interval EvaluateRecursive(
311      Instruction[] instructions,
312      IDictionary<ISymbolicExpressionTreeNode, Interval> nodeIntervals,
313      IDictionary<string, Interval> variableIntervals, IList<string> variables,
314      double minWidth, int maxDepth, ref int currIndex, ref int currDepth,
315      ISymbolicExpressionTree tree) {
316      Interval evaluate() {
317        var ic = 0;
[17742]318        IReadOnlyDictionary<string, Interval> readonlyRanges =
319          new ReadOnlyDictionary<string, Interval>(variableIntervals);
[17637]320        return Evaluate(instructions, ref ic, nodeIntervals, readonlyRanges);
[17631]321      }
322
323      Interval recurse(ref int idx, ref int depth) {
324        return EvaluateRecursive(instructions, nodeIntervals, variableIntervals, variables, minWidth, maxDepth, ref idx,
325          ref depth, tree);
326      }
327
328
329      var v = variables[currIndex];
330      var x = variableIntervals[v];
331      if (x.Width < minWidth || currDepth == maxDepth || !MultipleTimes(tree, v)) {
332        if (currIndex + 1 < variables.Count) {
333          currDepth = 0;
334          currIndex++;
335          var z = recurse(ref currIndex, ref currDepth);
336          currIndex--;
337          return z;
338        }
339
340        return evaluate();
341      }
342
[17742]343      var t = x.Split();
[17631]344      var xa = t.Item1;
345      var xb = t.Item2;
[17742]346      var d = currDepth;
347      currDepth = d + 1;
[17631]348      variableIntervals[v] = xa;
349      var ya = recurse(ref currIndex, ref currDepth);
[17742]350      currDepth = d + 1;
[17631]351      variableIntervals[v] = xb;
352      var yb = recurse(ref currIndex, ref currDepth);
353      variableIntervals[v] = x; // restore interval
354      return ya | yb;
355    }
356
357    public static Interval Evaluate(
358      Instruction[] instructions, ref int instructionCounter,
359      IDictionary<ISymbolicExpressionTreeNode, Interval> nodeIntervals = null,
[17637]360      IReadOnlyDictionary<string, Interval> variableIntervals = null) {
[17631]361      var currentInstr = instructions[instructionCounter];
[16404]362      //Use ref parameter, because the tree will be iterated through recursively from the left-side branch to the right side
363      //Update instructionCounter, whenever Evaluate is called
364      instructionCounter++;
[16374]365      Interval result = null;
[16331]366
[16303]367      switch (currentInstr.opCode) {
[16383]368        //Variables, Constants, ...
369        case OpCodes.Variable: {
[17756]370            var variableTreeNode = (VariableTreeNode)currentInstr.dynamicNode;
371            var weightInterval = new Interval(variableTreeNode.Weight, variableTreeNode.Weight);
372            //var variableInterval = (Interval)currentInstr.data;
[16383]373
[17756]374            Interval variableInterval;
375            if (variableIntervals != null && variableIntervals.ContainsKey(variableTreeNode.VariableName))
376              variableInterval = variableIntervals[variableTreeNode.VariableName];
377            else
378              variableInterval = (Interval)currentInstr.data;
[17631]379
[17756]380            result = Interval.Multiply(variableInterval, weightInterval);
381            break;
382          }
[16383]383        case OpCodes.Constant: {
[17756]384            var constTreeNode = (ConstantTreeNode)currentInstr.dynamicNode;
385            result = new Interval(constTreeNode.Value, constTreeNode.Value);
386            break;
387          }
[16303]388        //Elementary arithmetic rules
389        case OpCodes.Add: {
[17756]390            //result = Evaluate(instructions, ref instructionCounter, nodeIntervals);
391            result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
392            for (var i = 1; i < currentInstr.nArguments; i++) {
393              //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
394              var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
395              result = Interval.Add(result, argumentInterval);
396            }
397
398            break;
[16303]399          }
400        case OpCodes.Sub: {
[17756]401            //result = Evaluate(instructions, ref instructionCounter, nodeIntervals);
402            result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
403            if (currentInstr.nArguments == 1)
404              result = Interval.Multiply(new Interval(-1, -1), result);
[16404]405
[17756]406            for (var i = 1; i < currentInstr.nArguments; i++) {
407              //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
408              var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
409              result = Interval.Subtract(result, argumentInterval);
410            }
411
412            break;
[16303]413          }
[17756]414        case OpCodes.Mul: {
415            //result = Evaluate(instructions, ref instructionCounter, nodeIntervals);
416            result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
417            for (var i = 1; i < currentInstr.nArguments; i++) {
418              var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
419              //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
420              result = Interval.Multiply(result, argumentInterval);
421            }
[17631]422
[17756]423            break;
[16303]424          }
425        case OpCodes.Div: {
[17756]426            //result = Evaluate(instructions, ref instructionCounter, nodeIntervals);
427            result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
428            if (currentInstr.nArguments == 1)
429              result = Interval.Divide(new Interval(1, 1), result);
[16383]430
[17756]431            for (var i = 1; i < currentInstr.nArguments; i++) {
432              //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
433              var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
434              result = Interval.Divide(result, argumentInterval);
435            }
436
437            break;
438          }
439        //Trigonometric functions
440        case OpCodes.Sin: {
[17631]441            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
442            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
[17756]443            result = Interval.Sine(argumentInterval);
444            break;
[16303]445          }
446        case OpCodes.Cos: {
[17756]447            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
448            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
449            result = Interval.Cosine(argumentInterval);
450            break;
451          }
[16303]452        case OpCodes.Tan: {
[17756]453            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
454            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
455            result = Interval.Tangens(argumentInterval);
456            break;
457          }
[16758]458        case OpCodes.Tanh: {
[17756]459            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
460            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
461            result = Interval.HyperbolicTangent(argumentInterval);
462            break;
463          }
[16303]464        //Exponential functions
465        case OpCodes.Log: {
[17756]466            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
467            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
468            result = Interval.Logarithm(argumentInterval);
469            break;
470          }
[16303]471        case OpCodes.Exp: {
[17756]472            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
473            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
474            result = Interval.Exponential(argumentInterval);
475            break;
476          }
[16323]477        case OpCodes.Square: {
[17756]478            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
479            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
480            result = Interval.Square(argumentInterval);
481            break;
482          }
[17579]483        case OpCodes.SquareRoot: {
[17756]484            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
485            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
486            result = Interval.SquareRoot(argumentInterval);
487            break;
488          }
[17579]489        case OpCodes.Cube: {
[17756]490            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
491            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
492            result = Interval.Cube(argumentInterval);
493            break;
494          }
[17579]495        case OpCodes.CubeRoot: {
[17756]496            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
497            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
498            result = Interval.CubicRoot(argumentInterval);
499            break;
500          }
[17579]501        case OpCodes.Absolute: {
[17631]502            //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
503            var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
[17756]504            result = Interval.Absolute(argumentInterval);
505            break;
[17579]506          }
[17756]507        case OpCodes.AnalyticQuotient: {
508            //result = Evaluate(instructions, ref instructionCounter, nodeIntervals);
509            result = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
510            for (var i = 1; i < currentInstr.nArguments; i++) {
511              //var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals);
512              var argumentInterval = Evaluate(instructions, ref instructionCounter, nodeIntervals, variableIntervals);
513              result = Interval.AnalyticalQuotient(result, argumentInterval);
514            }
[17579]515
[17756]516            break;
517          }
[16303]518        default:
[16383]519          throw new NotSupportedException($"The tree contains the unknown symbol {currentInstr.dynamicNode.Symbol}");
[16303]520      }
[16331]521
[17631]522      if (!(nodeIntervals == null || nodeIntervals.ContainsKey(currentInstr.dynamicNode)))
[16404]523        nodeIntervals.Add(currentInstr.dynamicNode, result);
[16383]524
[16374]525      return result;
[16303]526    }
[16330]527
[17631]528    private static bool MultipleTimes(ISymbolicExpressionTree tree, string variable) {
529      var varlist = tree.IterateNodesPrefix().OfType<VariableTreeNode>().GroupBy(x => x.VariableName);
[17742]530      var group = varlist.Select(x => x.Key == variable).Count();
[17631]531
532      return group > 1;
533    }
534
535    private static bool ContainsVariableMultipleTimes(ISymbolicExpressionTree tree) {
536      var varlist = tree.IterateNodesPrefix().OfType<VariableTreeNode>().GroupBy(x => x.VariableName);
[17742]537      return varlist.Any(group => group.Count() > 1);
[17631]538    }
539
540
[16330]541    public static bool IsCompatible(ISymbolicExpressionTree tree) {
[17628]542      var containsUnknownSymbols = (
[16330]543        from n in tree.Root.GetSubtree(0).IterateNodesPrefix()
544        where
[17631]545          !(n.Symbol is Variable) &&
[17579]546          !(n.Symbol is Constant) &&
[16330]547          !(n.Symbol is StartSymbol) &&
548          !(n.Symbol is Addition) &&
549          !(n.Symbol is Subtraction) &&
550          !(n.Symbol is Multiplication) &&
551          !(n.Symbol is Division) &&
552          !(n.Symbol is Sine) &&
553          !(n.Symbol is Cosine) &&
554          !(n.Symbol is Tangent) &&
[17650]555          !(n.Symbol is HyperbolicTangent) &&
[16330]556          !(n.Symbol is Logarithm) &&
557          !(n.Symbol is Exponential) &&
558          !(n.Symbol is Square) &&
559          !(n.Symbol is SquareRoot) &&
[17579]560          !(n.Symbol is Cube) &&
561          !(n.Symbol is CubeRoot) &&
562          !(n.Symbol is Absolute) &&
563          !(n.Symbol is AnalyticQuotient)
[16330]564        select n).Any();
[17628]565      return !containsUnknownSymbols;
[16330]566    }
[16303]567  }
[17631]568}
Note: See TracBrowser for help on using the repository browser.