Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/Interpreter.cs @ 17212

Last change on this file since 17212 was 17212, checked in by gkronber, 5 years ago

#2994: fixed division, multiplication and cos for intervals based on failing tests

File size: 53.0 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Diagnostics;
4using System.Linq;
5using HeuristicLab.Common;
6using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
7
8namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
9  public abstract class Interpreter<T> where T : IAlgebraicType<T> {
10    public struct Instruction {
11      public byte opcode;
12      public ushort narg;
13      public int childIndex;
14      public double dblVal;
15      public object data; // any kind of data you want to store in instructions
16      public T value;
17    }
18
19    public T Evaluate(Instruction[] code) {
20      for (int i = code.Length - 1; i >= 0; --i) {
21        var instr = code[i];
22        var c = instr.childIndex;
23        var n = instr.narg;
24
25        switch (instr.opcode) {
26          case OpCodes.Variable: {
27              LoadVariable(instr);
28              break;
29            }
30          case OpCodes.Constant: { break; }  // we initialize constants in Compile. The value never changes afterwards
31          case OpCodes.Add: {
32              instr.value.Assign(code[c].value);
33              for (int j = 1; j < n; ++j) {
34                instr.value.Add(code[c + j].value);
35              }
36              break;
37            }
38
39          case OpCodes.Sub: {
40              if (n == 1) {
41                instr.value.AssignNeg(code[c].value);
42              } else {
43                instr.value.Assign(code[c].value);
44                for (int j = 1; j < n; ++j) {
45                  instr.value.Sub(code[c + j].value);
46                }
47              }
48              break;
49            }
50
51          case OpCodes.Mul: {
52              instr.value.Assign(code[c].value);
53              for (int j = 1; j < n; ++j) {
54                instr.value.Mul(code[c + j].value);
55              }
56              break;
57            }
58
59          case OpCodes.Div: {
60              if (n == 1) {
61                instr.value.AssignInv(code[c].value);
62              } else {
63                instr.value.Assign(code[c].value);
64                for (int j = 1; j < n; ++j) {
65                  instr.value.Div(code[c + j].value);
66                }
67              }
68              break;
69            }
70          case OpCodes.Square: {
71              instr.value.AssignIntPower(code[c].value, 2);
72              break;
73            }
74          case OpCodes.SquareRoot: {
75              instr.value.AssignIntRoot(code[c].value, 2);
76              break;
77            }
78          case OpCodes.Cube: {
79              instr.value.AssignIntPower(code[c].value, 3);
80              break;
81            }
82          case OpCodes.CubeRoot: {
83              instr.value.AssignIntRoot(code[c].value, 3);
84              break;
85            }
86          case OpCodes.Exp: {
87              instr.value.AssignExp(code[c].value);
88              break;
89            }
90          case OpCodes.Log: {
91              instr.value.AssignLog(code[c].value);
92              break;
93            }
94          case OpCodes.Sin: {
95              instr.value.AssignSin(code[c].value);
96              break;
97            }
98          case OpCodes.Cos: {
99              instr.value.AssignCos(code[c].value);
100              break;
101            }
102          case OpCodes.Absolute: {
103              instr.value.AssignAbs(code[c].value);
104              break;
105            }
106          case OpCodes.AnalyticQuotient: {
107              instr.value.Assign(code[c].value);
108              for (int j = 1; j < n; ++j) {
109                var t = instr.value.One;
110                t.Add(code[c + j].value.Clone().IntPower(2));
111                instr.value.Div(t.IntRoot(2));
112              }
113              break;
114            }
115          case OpCodes.Tanh: {
116              instr.value.AssignTanh(code[c].value);
117              break;
118            }
119
120          default: throw new ArgumentException($"Unknown opcode {instr.opcode}");
121        }
122      }
123      return code[0].value;
124    }
125
126    protected Instruction[] Compile(ISymbolicExpressionTree tree) {
127      var root = tree.Root.GetSubtree(0).GetSubtree(0);
128      var code = new Instruction[root.GetLength()];
129      if (root.SubtreeCount > ushort.MaxValue) throw new ArgumentException("Number of subtrees is too big (>65.535)");
130      int c = 1, i = 0;
131      foreach (var node in root.IterateNodesBreadth()) {
132        if (node.SubtreeCount > ushort.MaxValue) throw new ArgumentException("Number of subtrees is too big (>65.535)");
133        code[i] = new Instruction {
134          opcode = OpCodes.MapSymbolToOpCode(node),
135          narg = (ushort)node.SubtreeCount,
136          childIndex = c
137        };
138        if (node is VariableTreeNode variable) {
139          InitializeTerminalInstruction(ref code[i], variable);
140        } else if (node is ConstantTreeNode constant) {
141          InitializeTerminalInstruction(ref code[i], constant);
142        } else {
143          InitializeInternalInstruction(ref code[i], node);
144        }
145        c += node.SubtreeCount;
146        ++i;
147      }
148      return code;
149    }
150
151    protected abstract void InitializeTerminalInstruction(ref Instruction instruction, ConstantTreeNode constant);
152    protected abstract void InitializeTerminalInstruction(ref Instruction instruction, VariableTreeNode variable);
153    protected abstract void InitializeInternalInstruction(ref Instruction instruction, ISymbolicExpressionTreeNode node);
154
155    protected abstract void LoadVariable(Instruction a);
156
157  }
158
159
160  public sealed class VectorEvaluator : Interpreter<AlgebraicDoubleVector> {
161    private const int BATCHSIZE = 128;
162    [ThreadStatic]
163    private Dictionary<string, double[]> cachedData;
164
165    [ThreadStatic]
166    private IDataset dataset;
167
168    [ThreadStatic]
169    private int rowIndex;
170
171    [ThreadStatic]
172    private int[] rows;
173
174    private void InitCache(IDataset dataset) {
175      this.dataset = dataset;
176      cachedData = new Dictionary<string, double[]>();
177      foreach (var v in dataset.DoubleVariables) {
178        cachedData[v] = dataset.GetReadOnlyDoubleValues(v).ToArray();
179      }
180    }
181
182    public double[] Evaluate(ISymbolicExpressionTree tree, IDataset dataset, int[] rows) {
183      if (cachedData == null || this.dataset != dataset) {
184        InitCache(dataset);
185      }
186
187      this.rows = rows;
188      var code = Compile(tree);
189      var remainingRows = rows.Length % BATCHSIZE;
190      var roundedTotal = rows.Length - remainingRows;
191
192      var result = new double[rows.Length];
193
194      for (rowIndex = 0; rowIndex < roundedTotal; rowIndex += BATCHSIZE) {
195        Evaluate(code);
196        code[0].value.CopyTo(result, rowIndex, BATCHSIZE);
197      }
198
199      if (remainingRows > 0) {
200        Evaluate(code);
201        code[0].value.CopyTo(result, roundedTotal, remainingRows);
202      }
203
204      return result;
205    }
206
207    protected override void InitializeTerminalInstruction(ref Instruction instruction, ConstantTreeNode constant) {
208      instruction.dblVal = constant.Value;
209      instruction.value = new AlgebraicDoubleVector(BATCHSIZE);
210      instruction.value.AssignConstant(instruction.dblVal);
211    }
212
213    protected override void InitializeTerminalInstruction(ref Instruction instruction, VariableTreeNode variable) {
214      instruction.dblVal = variable.Weight;
215      instruction.value = new AlgebraicDoubleVector(BATCHSIZE);
216      if (cachedData.ContainsKey(variable.VariableName)) {
217        instruction.data = cachedData[variable.VariableName];
218      } else {
219        instruction.data = dataset.GetDoubleValues(variable.VariableName).ToArray();
220        cachedData[variable.VariableName] = (double[])instruction.data;
221      }
222    }
223
224    protected override void InitializeInternalInstruction(ref Instruction instruction, ISymbolicExpressionTreeNode node) {
225      instruction.value = new AlgebraicDoubleVector(BATCHSIZE);
226    }
227
228    protected override void LoadVariable(Instruction a) {
229      var data = (double[])a.data;
230      for (int i = rowIndex; i < rows.Length && i - rowIndex < BATCHSIZE; i++) a.value[i - rowIndex] = data[rows[i]];
231      a.value.Scale(a.dblVal);
232    }
233  }
234
235  public sealed class VectorAutoDiffEvaluator : Interpreter<MultivariateDual<AlgebraicDoubleVector>> {
236    private const int BATCHSIZE = 128;
237    [ThreadStatic]
238    private Dictionary<string, double[]> cachedData;
239
240    [ThreadStatic]
241    private IDataset dataset;
242
243    [ThreadStatic]
244    private int rowIndex;
245
246    [ThreadStatic]
247    private int[] rows;
248
249    [ThreadStatic]
250    private Dictionary<ISymbolicExpressionTreeNode, int> node2paramIdx;
251
252    private void InitCache(IDataset dataset) {
253      this.dataset = dataset;
254      cachedData = new Dictionary<string, double[]>();
255      foreach (var v in dataset.DoubleVariables) {
256        cachedData[v] = dataset.GetDoubleValues(v).ToArray();
257      }
258    }
259
260    /// <summary>
261    ///
262    /// </summary>
263    /// <param name="tree"></param>
264    /// <param name="dataset"></param>
265    /// <param name="rows"></param>
266    /// <param name="parameterNodes"></param>
267    /// <param name="fi">Function output. Must be allocated by the caller.</param>
268    /// <param name="jac">Jacobian matrix. Must be allocated by the caller.</param>
269    public void Evaluate(ISymbolicExpressionTree tree, IDataset dataset, int[] rows, ISymbolicExpressionTreeNode[] parameterNodes, double[] fi, double[,] jac) {
270      if (cachedData == null || this.dataset != dataset) {
271        InitCache(dataset);
272      }
273
274      int nParams = parameterNodes.Length;
275      node2paramIdx = new Dictionary<ISymbolicExpressionTreeNode, int>();
276      for (int i = 0; i < parameterNodes.Length; i++) node2paramIdx.Add(parameterNodes[i], i);
277
278      var code = Compile(tree);
279
280      var remainingRows = rows.Length % BATCHSIZE;
281      var roundedTotal = rows.Length - remainingRows;
282
283      this.rows = rows;
284
285      for (rowIndex = 0; rowIndex < roundedTotal; rowIndex += BATCHSIZE) {
286        Evaluate(code);
287        code[0].value.Value.CopyTo(fi, rowIndex, BATCHSIZE);
288
289        // TRANSPOSE into JAC
290        var g = code[0].value.Gradient;
291        for (int j = 0; j < nParams; ++j) {
292          if (g.Elements.TryGetValue(j, out AlgebraicDoubleVector v)) {
293            v.CopyColumnTo(jac, j, rowIndex, BATCHSIZE);
294          } else {
295            for (int r = 0; r < BATCHSIZE; r++) jac[rowIndex + r, j] = 0.0;
296          }
297        }
298      }
299
300      if (remainingRows > 0) {
301        Evaluate(code);
302        code[0].value.Value.CopyTo(fi, roundedTotal, remainingRows);
303
304        var g = code[0].value.Gradient;
305        for (int j = 0; j < nParams; ++j)
306          if (g.Elements.TryGetValue(j, out AlgebraicDoubleVector v)) {
307            v.CopyColumnTo(jac, j, roundedTotal, remainingRows);
308          } else {
309            for (int r = 0; r < remainingRows; r++) jac[roundedTotal + r, j] = 0.0;
310          }
311      }
312    }
313
314    protected override void InitializeInternalInstruction(ref Instruction instruction, ISymbolicExpressionTreeNode node) {
315      var zero = new AlgebraicDoubleVector(BATCHSIZE);
316      instruction.value = new MultivariateDual<AlgebraicDoubleVector>(zero);
317    }
318
319    protected override void InitializeTerminalInstruction(ref Instruction instruction, ConstantTreeNode constant) {
320      var g_arr = new double[BATCHSIZE];
321      if (node2paramIdx.TryGetValue(constant, out var paramIdx)) {
322        for (int i = 0; i < BATCHSIZE; i++) g_arr[i] = 1.0;
323        var g = new AlgebraicDoubleVector(g_arr);
324        instruction.value = new MultivariateDual<AlgebraicDoubleVector>(new AlgebraicDoubleVector(BATCHSIZE), paramIdx, g); // only a single column for the gradient
325      } else {
326        instruction.value = new MultivariateDual<AlgebraicDoubleVector>(new AlgebraicDoubleVector(BATCHSIZE));
327      }
328
329      instruction.dblVal = constant.Value;
330      instruction.value.Value.AssignConstant(instruction.dblVal);
331    }
332
333    protected override void InitializeTerminalInstruction(ref Instruction instruction, VariableTreeNode variable) {
334      double[] data;
335      if (cachedData.ContainsKey(variable.VariableName)) {
336        data = cachedData[variable.VariableName];
337      } else {
338        data = dataset.GetReadOnlyDoubleValues(variable.VariableName).ToArray();
339        cachedData[variable.VariableName] = (double[])instruction.data;
340      }
341
342      var paramIdx = -1;
343      if (node2paramIdx.ContainsKey(variable)) {
344        paramIdx = node2paramIdx[variable];
345        var f = new AlgebraicDoubleVector(BATCHSIZE);
346        var g = new AlgebraicDoubleVector(BATCHSIZE);
347        instruction.value = new MultivariateDual<AlgebraicDoubleVector>(f, paramIdx, g);
348      } else {
349        var f = new AlgebraicDoubleVector(BATCHSIZE);
350        instruction.value = new MultivariateDual<AlgebraicDoubleVector>(f);
351      }
352
353      instruction.dblVal = variable.Weight;
354      instruction.data = new object[] { data, paramIdx };
355    }
356
357    protected override void LoadVariable(Instruction a) {
358      var paramIdx = (int)((object[])a.data)[1];
359      var data = (double[])((object[])a.data)[0];
360
361      for (int i = rowIndex; i < rows.Length && i - rowIndex < BATCHSIZE; i++) a.value.Value[i - rowIndex] = data[rows[i]];
362      a.value.Scale(a.dblVal);
363
364      if (paramIdx >= 0) {
365        // update gradient with variable values
366        var g = a.value.Gradient.Elements[paramIdx];
367        for (int i = rowIndex; i < rows.Length && i - rowIndex < BATCHSIZE; i++) {
368          g[i - rowIndex] = data[rows[i]];
369        }
370      }
371    }
372  }
373
374
375  public sealed class IntervalEvaluator : Interpreter<AlgebraicInterval> {
376    [ThreadStatic]
377    private IDictionary<string, Interval> intervals;
378
379    public Interval Evaluate(ISymbolicExpressionTree tree, IDictionary<string, Interval> intervals) {
380      this.intervals = intervals;
381      var code = Compile(tree);
382      Evaluate(code);
383      return new Interval(code[0].value.LowerBound.Value.Value, code[0].value.UpperBound.Value.Value);
384    }
385
386    public Interval Evaluate(ISymbolicExpressionTree tree, IDictionary<string, Interval> intervals, ISymbolicExpressionTreeNode[] paramNodes, out double[] lowerGradient, out double[] upperGradient) {
387      this.intervals = intervals;
388      var code = Compile(tree);
389      Evaluate(code);
390      lowerGradient = new double[paramNodes.Length];
391      upperGradient = new double[paramNodes.Length];
392      var l = code[0].value.LowerBound;
393      var u = code[0].value.UpperBound;
394      for (int i = 0; i < paramNodes.Length; ++i) {
395        if (paramNodes[i] == null) continue;
396        if (l.Gradient.Elements.TryGetValue(paramNodes[i], out AlgebraicDouble value)) lowerGradient[i] = value;
397        if (u.Gradient.Elements.TryGetValue(paramNodes[i], out value)) upperGradient[i] = value;
398      }
399      return new Interval(code[0].value.LowerBound.Value.Value, code[0].value.UpperBound.Value.Value);
400    }
401
402    protected override void InitializeInternalInstruction(ref Instruction instruction, ISymbolicExpressionTreeNode node) {
403      instruction.value = new AlgebraicInterval(0, 0);
404    }
405
406
407    protected override void InitializeTerminalInstruction(ref Instruction instruction, ConstantTreeNode constant) {
408      instruction.dblVal = constant.Value;
409      instruction.value = new AlgebraicInterval(
410        new MultivariateDual<AlgebraicDouble>(constant.Value, constant, 1.0),
411        new MultivariateDual<AlgebraicDouble>(constant.Value, constant, 1.0) // use node as key
412        );
413    }
414
415    protected override void InitializeTerminalInstruction(ref Instruction instruction, VariableTreeNode variable) {
416      instruction.dblVal = variable.Weight;
417      instruction.value = new AlgebraicInterval(
418        low: new MultivariateDual<AlgebraicDouble>(intervals[variable.VariableName].LowerBound, variable, intervals[variable.VariableName].LowerBound),  // bounds change by variable value d/dc (c I(var)) = I(var)
419        high: new MultivariateDual<AlgebraicDouble>(intervals[variable.VariableName].UpperBound, variable, intervals[variable.VariableName].UpperBound)
420        );
421    }
422
423    protected override void LoadVariable(Instruction a) {
424      // nothing to do
425    }
426  }
427
428  public interface IAlgebraicType<T> {
429    T Zero { get; }
430    T One { get; }
431
432    T AssignAbs(T a); // set this to assign abs(a)
433    T Assign(T a); // assign this to same value as a (copy!)
434    T AssignNeg(T a); // set this to negative(a)
435    T AssignInv(T a); // set this to inv(a);
436    T Scale(double s); // scale this with s
437    T Add(T a); // add a to this
438    T Sub(T a); // subtract a from this
439    T Mul(T a); // multiply this with a
440    T Div(T a); // divide this by a
441    T AssignLog(T a); // set this to log a
442    T AssignExp(T a); // set this to exp(a)
443    T AssignSin(T a); // set this to sin(a)
444    T AssignCos(T a); // set this to cos(a)
445    T AssignTanh(T a); // set this to tanh(a)
446    T AssignIntPower(T a, int p);
447    T AssignIntRoot(T a, int r);
448    T AssignSgn(T a); // set this to sign(a)
449    T Clone();
450  }
451
452  public static class Algebraic {
453    public static T Abs<T>(this T a) where T : IAlgebraicType<T> { a.AssignAbs(a.Clone()); return a; }
454    public static T Neg<T>(this T a) where T : IAlgebraicType<T> { a.AssignNeg(a.Clone()); return a; }
455    public static T Inv<T>(this T a) where T : IAlgebraicType<T> { a.AssignInv(a.Clone()); return a; }
456    public static T Log<T>(this T a) where T : IAlgebraicType<T> { a.AssignLog(a.Clone()); return a; }
457    public static T Exp<T>(this T a) where T : IAlgebraicType<T> { a.AssignExp(a.Clone()); return a; }
458    public static T Sin<T>(this T a) where T : IAlgebraicType<T> { a.AssignSin(a.Clone()); return a; }
459    public static T Cos<T>(this T a) where T : IAlgebraicType<T> { a.AssignCos(a.Clone()); return a; }
460    public static T Sgn<T>(this T a) where T : IAlgebraicType<T> { a.AssignSgn(a.Clone()); return a; }
461    public static T IntPower<T>(this T a, int p) where T : IAlgebraicType<T> { a.AssignIntPower(a.Clone(), p); return a; }
462    public static T IntRoot<T>(this T a, int r) where T : IAlgebraicType<T> { a.AssignIntRoot(a.Clone(), r); return a; }
463
464    public static T Max<T>(T a, T b) where T : IAlgebraicType<T> {
465      // ((a + b) + abs(b - a)) / 2
466      return a.Clone().Add(b).Add(b.Clone().Sub(a).Abs()).Scale(1.0 / 2.0);
467    }
468    public static T Min<T>(T a, T b) where T : IAlgebraicType<T> {
469      // ((a + b) - abs(a - b)) / 2
470      return a.Clone().Add(b).Sub(a.Clone().Sub(b).Abs()).Scale(1.0 / 2.0);
471    }
472  }
473
474
475  // algebraic type wrapper for a double value
476  [DebuggerDisplay("{Value}")]
477  public sealed class AlgebraicDouble : IAlgebraicType<AlgebraicDouble> {
478    public static implicit operator AlgebraicDouble(double value) { return new AlgebraicDouble(value); }
479    public static implicit operator double(AlgebraicDouble value) { return value.Value; }
480    public double Value;
481
482    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
483    public AlgebraicDouble Zero => new AlgebraicDouble(0.0);
484    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
485    public AlgebraicDouble One => new AlgebraicDouble(1.0);
486
487    public bool IsInfinity => IsNegativeInfinity || IsPositiveInfinity;
488    public bool IsNegativeInfinity => double.IsNegativeInfinity(Value);
489    public bool IsPositiveInfinity => double.IsPositiveInfinity(Value);
490    public AlgebraicDouble() { }
491    public AlgebraicDouble(double value) { this.Value = value; }
492    public AlgebraicDouble Assign(AlgebraicDouble a) { Value = a.Value; return this; }
493    public AlgebraicDouble Add(AlgebraicDouble a) { Value += a.Value; return this; }
494    public AlgebraicDouble Sub(AlgebraicDouble a) { Value -= a.Value; return this; }
495    public AlgebraicDouble Mul(AlgebraicDouble a) { Value *= a.Value; return this; }
496    public AlgebraicDouble Div(AlgebraicDouble a) { Value /= a.Value; return this; }
497    public AlgebraicDouble Scale(double s) { Value *= s; return this; }
498    public AlgebraicDouble AssignInv(AlgebraicDouble a) { Value = 1.0 / a.Value; return this; }
499    public AlgebraicDouble AssignNeg(AlgebraicDouble a) { Value = -a.Value; return this; }
500    public AlgebraicDouble AssignSin(AlgebraicDouble a) { Value = Math.Sin(a.Value); return this; }
501    public AlgebraicDouble AssignCos(AlgebraicDouble a) { Value = Math.Cos(a.Value); return this; }
502    public AlgebraicDouble AssignTanh(AlgebraicDouble a) { Value = Math.Tanh(a.Value); return this; }
503    public AlgebraicDouble AssignLog(AlgebraicDouble a) { Value = Math.Log(a.Value); return this; }
504    public AlgebraicDouble AssignExp(AlgebraicDouble a) { Value = Math.Exp(a.Value); return this; }
505    public AlgebraicDouble AssignIntPower(AlgebraicDouble a, int p) { Value = Math.Pow(a.Value, p); return this; }
506    public AlgebraicDouble AssignIntRoot(AlgebraicDouble a, int r) { Value = Math.Pow(a.Value, 1.0 / r); return this; }
507    public AlgebraicDouble AssignAbs(AlgebraicDouble a) { Value = Math.Abs(a.Value); return this; }
508    public AlgebraicDouble AssignSgn(AlgebraicDouble a) { Value = double.IsNaN(a.Value) ? double.NaN : Math.Sign(a.Value); return this; }
509    public AlgebraicDouble Clone() { return new AlgebraicDouble(Value); }
510
511    public override string ToString() {
512      return Value.ToString();
513    }
514  }
515
516  // a simple vector as an algebraic type
517  [DebuggerDisplay("DoubleVector(len={Length}): {string.}")]
518  public class AlgebraicDoubleVector : IAlgebraicType<AlgebraicDoubleVector> {
519    private double[] arr;
520    public double this[int idx] { get { return arr[idx]; } set { arr[idx] = value; } }
521    public int Length => arr.Length;
522
523    public AlgebraicDoubleVector(int length) { arr = new double[length]; }
524
525    public AlgebraicDoubleVector() { }
526
527    /// <summary>
528    ///
529    /// </summary>
530    /// <param name="arr">array is not copied</param>
531    public AlgebraicDoubleVector(double[] arr) { this.arr = arr; }
532
533    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
534    public AlgebraicDoubleVector Zero => new AlgebraicDoubleVector(new double[this.Length]); // must return vector of same length as this (therefore Zero is not static)
535    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
536    public AlgebraicDoubleVector One => new AlgebraicDoubleVector(new double[this.Length]).AssignConstant(1.0); // must return vector of same length as this (therefore Zero is not static)
537    public AlgebraicDoubleVector Assign(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = a.arr[i]; } return this; }
538    public AlgebraicDoubleVector Add(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] += a.arr[i]; } return this; }
539    public AlgebraicDoubleVector Sub(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] -= a.arr[i]; } return this; }
540    public AlgebraicDoubleVector Mul(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] *= a.arr[i]; } return this; }
541    public AlgebraicDoubleVector Div(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] /= a.arr[i]; } return this; }
542    public AlgebraicDoubleVector AssignNeg(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = -a.arr[i]; } return this; }
543    public AlgebraicDoubleVector AssignInv(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = 1.0 / a.arr[i]; } return this; }
544    public AlgebraicDoubleVector Scale(double s) { for (int i = 0; i < arr.Length; ++i) { arr[i] *= s; } return this; }
545    public AlgebraicDoubleVector AssignLog(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Log(a.arr[i]); } return this; }
546    public AlgebraicDoubleVector AssignSin(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Sin(a.arr[i]); } return this; }
547    public AlgebraicDoubleVector AssignExp(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Exp(a.arr[i]); } return this; }
548    public AlgebraicDoubleVector AssignCos(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Cos(a.arr[i]); } return this; }
549    public AlgebraicDoubleVector AssignTanh(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Tanh(a.arr[i]); } return this; }
550    public AlgebraicDoubleVector AssignIntPower(AlgebraicDoubleVector a, int p) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Pow(a.arr[i], p); } return this; }
551    public AlgebraicDoubleVector AssignIntRoot(AlgebraicDoubleVector a, int r) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Pow(a.arr[i], 1.0 / r); } return this; }
552    public AlgebraicDoubleVector AssignAbs(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Abs(a.arr[i]); } return this; }
553    public AlgebraicDoubleVector AssignSgn(AlgebraicDoubleVector a) { for (int i = 0; i < arr.Length; ++i) { arr[i] = Math.Sign(a.arr[i]); } return this; }
554
555    public AlgebraicDoubleVector Clone() {
556      var v = new AlgebraicDoubleVector(this.arr.Length);
557      Array.Copy(arr, v.arr, v.arr.Length);
558      return v;
559    }
560
561    public AlgebraicDoubleVector AssignConstant(double constantValue) {
562      for (int i = 0; i < arr.Length; ++i) {
563        arr[i] = constantValue;
564      }
565      return this;
566    }
567
568    public void CopyTo(double[] dest, int idx, int length) {
569      Array.Copy(arr, 0, dest, idx, length);
570    }
571
572    public void CopyFrom(double[] data, int rowIndex) {
573      Array.Copy(data, rowIndex, arr, 0, Math.Min(arr.Length, data.Length - rowIndex));
574    }
575    public void CopyRowTo(double[,] dest, int row) {
576      for (int j = 0; j < arr.Length; ++j) dest[row, j] = arr[j];
577    }
578
579    internal void CopyColumnTo(double[,] dest, int column, int row, int len) {
580      for (int j = 0; j < len; ++j) dest[row + j, column] = arr[j];
581    }
582
583    public override string ToString() {
584      return "{" + string.Join(", ", arr.Take(Math.Max(5, arr.Length))) + (arr.Length > 5 ? "..." : string.Empty) + "}";
585    }
586  }
587
588
589  /*
590  // vectors of algebraic types
591  public sealed class AlgebraicVector<T> : IAlgebraicType<AlgebraicVector<T>> where T : IAlgebraicType<T>, new() {
592    private T[] elems;
593
594    public T this[int idx] { get { return elems[idx]; } set { elems[idx] = value; } }
595
596    public int Length => elems.Length;
597
598    private AlgebraicVector() { }
599
600    public AlgebraicVector(int len) { elems = new T[len]; }
601
602    /// <summary>
603    ///
604    /// </summary>
605    /// <param name="elems">The array is copied (element-wise clone)</param>
606    public AlgebraicVector(T[] elems) {
607      this.elems = new T[elems.Length];
608      for (int i = 0; i < elems.Length; ++i) { this.elems[i] = elems[i].Clone(); }
609    }
610
611    /// <summary>
612    ///
613    /// </summary>
614    /// <param name="elems">Array is not copied!</param>
615    /// <returns></returns>
616    public AlgebraicVector<T> FromArray(T[] elems) {
617      var v = new AlgebraicVector<T>();
618      v.elems = elems;
619      return v;
620    }
621
622    public void CopyTo(T[] dest) {
623      if (dest.Length != elems.Length) throw new InvalidOperationException("arr lengths do not match in Vector<T>.Copy");
624      Array.Copy(elems, dest, dest.Length);
625    }
626
627    public AlgebraicVector<T> Clone() { return new AlgebraicVector<T>(elems); }
628
629
630    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
631    public AlgebraicVector<T> Zero => new AlgebraicVector<T>(Length);
632    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
633    public AlgebraicVector<T> One { get { var v = new AlgebraicVector<T>(Length); for (int i = 0; i < elems.Length; ++i) elems[i] = new T().One; return v; } }
634    public AlgebraicVector<T> Assign(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].Assign(a.elems[i]); } return this; }
635    public AlgebraicVector<T> Add(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].Add(a.elems[i]); } return this; }
636    public AlgebraicVector<T> Sub(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].Sub(a.elems[i]); } return this; }
637    public AlgebraicVector<T> Mul(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].Mul(a.elems[i]); } return this; }
638    public AlgebraicVector<T> Div(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].Div(a.elems[i]); } return this; }
639    public AlgebraicVector<T> AssignNeg(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignNeg(a.elems[i]); } return this; }
640    public AlgebraicVector<T> Scale(double s) { for (int i = 0; i < elems.Length; ++i) { elems[i].Scale(s); } return this; }
641    public AlgebraicVector<T> Scale(T s) { for (int i = 0; i < elems.Length; ++i) { elems[i].Mul(s); } return this; }
642    public AlgebraicVector<T> AssignInv(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignInv(a.elems[i]); } return this; }
643    public AlgebraicVector<T> AssignLog(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignLog(a.elems[i]); } return this; }
644    public AlgebraicVector<T> AssignExp(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignExp(a.elems[i]); } return this; }
645    public AlgebraicVector<T> AssignSin(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignSin(a.elems[i]); } return this; }
646    public AlgebraicVector<T> AssignCos(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignCos(a.elems[i]); } return this; }
647    public AlgebraicVector<T> AssignIntPower(AlgebraicVector<T> a, int p) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignIntPower(a.elems[i], p); } return this; }
648    public AlgebraicVector<T> AssignIntRoot(AlgebraicVector<T> a, int r) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignIntRoot(a.elems[i], r); } return this; }
649    public AlgebraicVector<T> AssignAbs(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignAbs(a.elems[i]); } return this; }
650    public AlgebraicVector<T> AssignSgn(AlgebraicVector<T> a) { for (int i = 0; i < elems.Length; ++i) { elems[i].AssignSgn(a.elems[i]); } return this; }
651  }
652
653  */
654
655
656  /// <summary>
657  /// A sparse vector of algebraic types. Elements are accessed via a key of type K
658  /// </summary>
659  /// <typeparam name="K">Key type</typeparam>
660  /// <typeparam name="T">Element type</typeparam>
661  [DebuggerDisplay("SparseVector: {ToString()}")]
662  public sealed class AlgebraicSparseVector<K, T> : IAlgebraicType<AlgebraicSparseVector<K, T>> where T : IAlgebraicType<T> {
663    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
664    private Dictionary<K, T> elems;
665    public IReadOnlyDictionary<K, T> Elements => elems;
666
667
668    public AlgebraicSparseVector(AlgebraicSparseVector<K, T> original) {
669      elems = original.elems.ToDictionary(kvp => kvp.Key, kvp => kvp.Value.Clone());
670    }
671
672    /// <summary>
673    ///
674    /// </summary>
675    /// <param name="keys"></param>
676    /// <param name="values">values are cloned</param>
677    public AlgebraicSparseVector(K[] keys, T[] values) {
678      if (keys.Length != values.Length) throw new ArgumentException("lengths of keys and values doesn't match in SparseVector");
679      elems = new Dictionary<K, T>(keys.Length);
680      for (int i = 0; i < keys.Length; ++i) {
681        elems.Add(keys[i], values[i].Clone());
682      }
683    }
684
685    public AlgebraicSparseVector() {
686      this.elems = new Dictionary<K, T>();
687    }
688
689    // keep only elements from a
690    private void AssignFromSource(AlgebraicSparseVector<K, T> a, Func<T, T, T> mapAssign) {
691      // remove elems from this which don't occur in a
692      List<K> keysToRemove = new List<K>();
693      foreach (var kvp in elems) {
694        if (!a.elems.ContainsKey(kvp.Key)) keysToRemove.Add(kvp.Key);
695      }
696      foreach (var o in keysToRemove) elems.Remove(o); // -> zero
697
698      foreach (var kvp in a.elems) {
699        if (elems.TryGetValue(kvp.Key, out T value))
700          mapAssign(kvp.Value, value);
701        else
702          elems.Add(kvp.Key, mapAssign(kvp.Value, kvp.Value.Zero));
703      }
704    }
705
706    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
707    public AlgebraicSparseVector<K, T> Zero => new AlgebraicSparseVector<K, T>();
708    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
709    public AlgebraicSparseVector<K, T> One => throw new NotSupportedException();
710
711    public AlgebraicSparseVector<K, T> Scale(T s) { foreach (var kvp in elems) { kvp.Value.Mul(s); } return this; }
712    public AlgebraicSparseVector<K, T> Scale(double s) { foreach (var kvp in elems) { kvp.Value.Scale(s); } return this; }
713
714    public AlgebraicSparseVector<K, T> Assign(AlgebraicSparseVector<K, T> a) { elems.Clear(); AssignFromSource(a, (src, dest) => dest.Assign(src)); return this; }
715    public AlgebraicSparseVector<K, T> AssignInv(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignInv(src)); return this; }
716    public AlgebraicSparseVector<K, T> AssignNeg(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignNeg(src)); return this; }
717    public AlgebraicSparseVector<K, T> AssignLog(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignLog(src)); return this; }
718    public AlgebraicSparseVector<K, T> AssignExp(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignExp(src)); return this; }
719    public AlgebraicSparseVector<K, T> AssignIntPower(AlgebraicSparseVector<K, T> a, int p) { AssignFromSource(a, (src, dest) => dest.AssignIntPower(src, p)); return this; }
720    public AlgebraicSparseVector<K, T> AssignIntRoot(AlgebraicSparseVector<K, T> a, int r) { AssignFromSource(a, (src, dest) => dest.AssignIntRoot(src, r)); return this; }
721    public AlgebraicSparseVector<K, T> AssignSin(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignSin(src)); return this; }
722    public AlgebraicSparseVector<K, T> AssignCos(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignCos(src)); return this; }
723    public AlgebraicSparseVector<K, T> AssignTanh(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignTanh(src)); return this; }
724    public AlgebraicSparseVector<K, T> AssignAbs(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignAbs(src)); return this; }
725    public AlgebraicSparseVector<K, T> AssignSgn(AlgebraicSparseVector<K, T> a) { AssignFromSource(a, (src, dest) => dest.AssignSgn(src)); return this; }
726    public AlgebraicSparseVector<K, T> Add(AlgebraicSparseVector<K, T> a) {
727      foreach (var kvp in a.elems) {
728        if (elems.TryGetValue(kvp.Key, out T value))
729          value.Add(kvp.Value);
730        else
731          elems.Add(kvp.Key, kvp.Value.Clone()); // 0 + a
732      }
733      return this;
734    }
735
736    public AlgebraicSparseVector<K, T> Sub(AlgebraicSparseVector<K, T> a) {
737      foreach (var kvp in a.elems) {
738        if (elems.TryGetValue(kvp.Key, out T value))
739          value.Sub(kvp.Value);
740        else
741          elems.Add(kvp.Key, kvp.Value.Zero.Sub(kvp.Value)); // 0 - a
742      }
743      return this;
744    }
745
746    public AlgebraicSparseVector<K, T> Mul(AlgebraicSparseVector<K, T> a) {
747      var keys = elems.Keys.ToArray();
748      foreach (var k in keys) if (!a.elems.ContainsKey(k)) elems.Remove(k); // 0 * a => 0
749      foreach (var kvp in a.elems) {
750        if (elems.TryGetValue(kvp.Key, out T value))
751          value.Mul(kvp.Value); // this * a
752      }
753      return this;
754    }
755
756    public AlgebraicSparseVector<K, T> Div(AlgebraicSparseVector<K, T> a) {
757      return Mul(a.Clone().Inv());
758    }
759
760    public AlgebraicSparseVector<K, T> Clone() {
761      return new AlgebraicSparseVector<K, T>(this);
762    }
763
764    public override string ToString() {
765      return "[" + string.Join(" ", elems.Select(kvp => kvp.Key + ": " + kvp.Value)) + "]";
766    }
767  }
768
769  [DebuggerDisplay("[{low.Value}..{high.Value}]")]
770  public class AlgebraicInterval : IAlgebraicType<AlgebraicInterval> {
771    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
772    private MultivariateDual<AlgebraicDouble> low;
773    public MultivariateDual<AlgebraicDouble> LowerBound => low.Clone();
774
775    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
776    private MultivariateDual<AlgebraicDouble> high;
777    public MultivariateDual<AlgebraicDouble> UpperBound => high.Clone();
778
779
780    public AlgebraicInterval() : this(double.NegativeInfinity, double.PositiveInfinity) { }
781
782    public AlgebraicInterval(MultivariateDual<AlgebraicDouble> low, MultivariateDual<AlgebraicDouble> high) {
783      this.low = low.Clone();
784      this.high = high.Clone();
785    }
786
787    public AlgebraicInterval(double low, double high) {
788      this.low = new MultivariateDual<AlgebraicDouble>(new AlgebraicDouble(low));
789      this.high = new MultivariateDual<AlgebraicDouble>(new AlgebraicDouble(high));
790    }
791
792    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
793    public AlgebraicInterval Zero => new AlgebraicInterval(0.0, 0.0);
794    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
795    public AlgebraicInterval One => new AlgebraicInterval(1.0, 1.0);
796
797    public AlgebraicInterval Add(AlgebraicInterval a) {
798      low.Add(a.low);
799      high.Add(a.high);
800      return this;
801    }
802
803    public AlgebraicInterval Mul(AlgebraicInterval a) {
804      var v1 = low.Clone().Mul(a.low);
805      var v2 = low.Clone().Mul(a.high);
806      var v3 = high.Clone().Mul(a.low);
807      var v4 = high.Clone().Mul(a.high);
808
809      low = Min(Min(v1, v2), Min(v3, v4));
810      high = Max(Max(v1, v2), Max(v3, v4));
811
812      return this;
813    }
814
815    // algebraic min() / max() do not work for infinities
816    // detect and handle infinite values explicitly
817    private static MultivariateDual<AlgebraicDouble> Min(MultivariateDual<AlgebraicDouble> a, MultivariateDual<AlgebraicDouble> b) {
818      if (a.Value.IsInfinity || b.Value.IsInfinity) return a.Value < b.Value ? a : b; // NOTE: this is not differentiable but for infinite values we do not care
819      else return Algebraic.Min(a, b); // differentiable statement
820    }
821    private static MultivariateDual<AlgebraicDouble> Max(MultivariateDual<AlgebraicDouble> a, MultivariateDual<AlgebraicDouble> b) {
822      if (a.Value.IsInfinity || b.Value.IsInfinity) return a.Value >= b.Value ? a : b; // NOTE: this is not differentiable but for infinite values we do not care
823      else return Algebraic.Max(a, b); // differentiable statement
824    }
825
826    public AlgebraicInterval Assign(AlgebraicInterval a) {
827      low = a.low;
828      high = a.high;
829      return this;
830    }
831
832    public AlgebraicInterval AssignCos(AlgebraicInterval a) {
833      return AssignSin(a.Clone().Add(new AlgebraicInterval(Math.PI / 2, Math.PI / 2)));
834    }
835
836    public AlgebraicInterval Div(AlgebraicInterval a) {
837      if (a.Contains(0.0)) {
838        if (a.low.Value.Value == 0 && a.high.Value.Value == 0) {
839          if (this.low.Value >= 0) {
840            // pos / 0
841          } else if (this.high.Value <= 0) {
842            // neg / 0
843          } else {
844            low = new MultivariateDual<AlgebraicDouble>(double.NegativeInfinity);
845            high = new MultivariateDual<AlgebraicDouble>(double.PositiveInfinity);
846          }
847        } else if (a.low.Value.Value >= 0) {
848          // a is positive
849          Mul(new AlgebraicInterval(a.Clone().high.Inv(), new MultivariateDual<AlgebraicDouble>(double.PositiveInfinity)));
850        } else if (a.high.Value <= 0) {
851          // a is negative
852          Mul(new AlgebraicInterval(new MultivariateDual<AlgebraicDouble>(double.NegativeInfinity), a.low.Clone().Inv()));
853        } else {
854          // a is interval over zero
855          low = new MultivariateDual<AlgebraicDouble>(double.NegativeInfinity);
856          high = new MultivariateDual<AlgebraicDouble>(double.PositiveInfinity);
857        }
858      } else {
859        Mul(new AlgebraicInterval(a.high.Clone().Inv(), a.low.Clone().Inv())); // inverting leads to inverse roles of high and low
860      }
861      return this;
862    }
863
864    public AlgebraicInterval AssignExp(AlgebraicInterval a) {
865      low.AssignExp(a.low);
866      high.AssignExp(a.high);
867      return this;
868    }
869
870    // tanh is a bijective function
871    public AlgebraicInterval AssignTanh(AlgebraicInterval a) {
872      low.AssignTanh(a.low);
873      high.AssignTanh(a.high);
874      return this;
875    }
876
877    public AlgebraicInterval AssignIntPower(AlgebraicInterval a, int p) {
878      if (p < 0) {  // x^-3 == 1/(x^3)
879        AssignIntPower(a, -p);
880        return AssignInv(this);
881      } else if (p == 0) {
882        if (a.Contains(0.0)) {
883          // => 0^0 = 0 ; might not be relevant
884          low = new MultivariateDual<AlgebraicDouble>(0.0);
885          high = new MultivariateDual<AlgebraicDouble>(1.0);
886          return this;
887        } else {
888          // => 1
889          low = new MultivariateDual<AlgebraicDouble>(1.0);
890          high = new MultivariateDual<AlgebraicDouble>(1.0);
891          return this;
892        }
893      } else if (p == 1) return this;
894      else if (p % 2 == 0) {
895        // p is even => interval must be positive
896        if (a.Contains(0.0)) {
897          low = new MultivariateDual<AlgebraicDouble>(0.0);
898          high = Algebraic.Max(a.low.IntPower(p), a.high.IntPower(p));
899        } else {
900          var lowPower = a.low.IntPower(p);
901          var highPower = a.high.IntPower(p);
902          low = Algebraic.Min(lowPower, highPower);
903          high = Algebraic.Max(lowPower, highPower);
904        }
905      } else {
906        // p is uneven
907        if (a.Contains(0.0)) {
908          low.AssignIntPower(a.low, p);
909          high.AssignIntPower(a.high, p);
910        } else {
911          var lowPower = a.low.IntPower(p);
912          var highPower = a.high.IntPower(p);
913          low = Algebraic.Min(lowPower, highPower);
914          high = Algebraic.Max(lowPower, highPower);
915        }
916      }
917      return this;
918    }
919
920    public AlgebraicInterval AssignIntRoot(AlgebraicInterval a, int r) {
921      if (r == 0) { low = new MultivariateDual<AlgebraicDouble>(double.NaN); high = new MultivariateDual<AlgebraicDouble>(double.NaN); return this; }
922      if (r == 1) return this;
923      if (r < 0) {
924        // x^ (-1/2) = 1 / (x^(1/2))
925        AssignIntRoot(a, -r);
926        return AssignInv(this);
927      } else {
928        // root only defined for positive arguments
929        if (a.LowerBound.Value.Value < 0) {
930          low = new MultivariateDual<AlgebraicDouble>(double.NaN);
931          high = new MultivariateDual<AlgebraicDouble>(double.NaN);
932          return this;
933        } else {
934          low.AssignIntRoot(a.low, r);
935          high.AssignIntRoot(a.high, r);
936          return this;
937        }
938      }
939    }
940
941    public AlgebraicInterval AssignInv(AlgebraicInterval a) {
942      low = new MultivariateDual<AlgebraicDouble>(1.0);
943      high = new MultivariateDual<AlgebraicDouble>(1.0);
944      return Div(a);
945    }
946
947    public AlgebraicInterval AssignLog(AlgebraicInterval a) {
948      low.AssignLog(a.low);
949      high.AssignLog(a.high);
950      return this;
951    }
952
953    public AlgebraicInterval AssignNeg(AlgebraicInterval a) {
954      low.AssignNeg(a.high);
955      high.AssignNeg(a.low);
956      return this;
957    }
958
959    public AlgebraicInterval Scale(double s) {
960      low.Scale(s);
961      high.Scale(s);
962      if (s < 0) {
963        var t = low;
964        low = high;
965        high = t;
966      }
967      return this;
968    }
969
970    public AlgebraicInterval AssignSin(AlgebraicInterval a) {
971      var lower = a.LowerBound.Value.Value;
972      var size = a.UpperBound.Value.Value - lower;
973      if (size < 0) throw new InvalidProgramException(); // ASSERT interval >= 0;
974
975      if (size >= Math.PI * 2) {
976        low = new MultivariateDual<AlgebraicDouble>(-1.0); // zero gradient
977        high = new MultivariateDual<AlgebraicDouble>(1.0);
978        return this;
979      }
980
981      // assume low and high are in the same quadrant
982      low = Algebraic.Min(a.LowerBound.Clone().Sin(), a.UpperBound.Clone().Sin());
983      high = Algebraic.Max(a.LowerBound.Clone().Sin(), a.UpperBound.Clone().Sin());
984
985      // override min and max if necessary
986
987      // shift interval 'a' into the range [-2pi .. 2pi] without changing the size of the interval to simplify the checks
988      lower = lower % (2 * Math.PI); // lower in [-2pi .. 2pi]     
989
990      // handle min = -1 and max = 1 cases explicitly
991      var pi_2 = Math.PI / 2.0;
992      var maxima = new double[] { -3 * pi_2, pi_2 };
993      var minima = new double[] { -pi_2, 3 * pi_2 };
994
995      // override min and max if necessary
996      if (maxima.Any(m => lower < m && lower + size > m)) {
997        // max = 1
998        high = new MultivariateDual<AlgebraicDouble>(1.0); // zero gradient
999      }
1000
1001      if (minima.Any(m => lower < m && lower + size > m)) {
1002        // min = -1;
1003        low = new MultivariateDual<AlgebraicDouble>(-1.0); // zero gradient
1004      }
1005      return this;
1006    }
1007
1008    public AlgebraicInterval Sub(AlgebraicInterval a) {
1009      // [x1,x2] − [y1,y2] = [x1 − y2,x2 − y1]
1010      low.Sub(a.high);
1011      high.Sub(a.low);
1012      return this;
1013    }
1014
1015    public AlgebraicInterval Clone() {
1016      return new AlgebraicInterval(low, high);
1017    }
1018
1019    public bool Contains(double val) {
1020      return LowerBound.Value.Value <= val && val <= UpperBound.Value.Value;
1021    }
1022
1023    public AlgebraicInterval AssignAbs(AlgebraicInterval a) {
1024      if (a.Contains(0.0)) {
1025        var abslow = a.low.Clone().Abs();
1026        var abshigh = a.high.Clone().Abs();
1027        a.high.Assign(Algebraic.Max(abslow, abshigh));
1028        a.low.Assign(new MultivariateDual<AlgebraicDouble>(0.0)); // lost gradient for lower bound
1029      } else {
1030        var abslow = a.low.Clone().Abs();
1031        var abshigh = a.high.Clone().Abs();
1032        a.low.Assign(Algebraic.Min(abslow, abshigh));
1033        a.high.Assign(Algebraic.Max(abslow, abshigh));
1034      }
1035      return this;
1036    }
1037
1038    public AlgebraicInterval AssignSgn(AlgebraicInterval a) {
1039      low.AssignSgn(a.low);
1040      high.AssignSgn(a.high);
1041      return this;
1042    }
1043  }
1044
1045  public class Dual<V> : IAlgebraicType<Dual<V>>
1046    where V : IAlgebraicType<V> {
1047    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
1048    private V v;
1049    public V Value => v;
1050
1051    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
1052    private V dv;
1053    public V Derivative => dv;
1054
1055    public Dual(V v, V dv) { this.v = v; this.dv = dv; }
1056
1057    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
1058    public Dual<V> Zero => new Dual<V>(Value.Zero, Derivative.Zero);
1059    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
1060    public Dual<V> One => new Dual<V>(Value.One, Derivative.Zero);
1061
1062    public Dual<V> Assign(Dual<V> a) { v.Assign(a.v); dv.Assign(a.dv); return this; }
1063    public Dual<V> Scale(double s) { v.Scale(s); dv.Scale(s); return this; }
1064    public Dual<V> Add(Dual<V> a) { v.Add(a.v); dv.Add(a.dv); return this; }
1065    public Dual<V> Sub(Dual<V> a) { v.Sub(a.v); dv.Sub(a.dv); return this; }
1066    public Dual<V> AssignNeg(Dual<V> a) { v.AssignNeg(a.v); dv.AssignNeg(a.dv); return this; }
1067    public Dual<V> AssignInv(Dual<V> a) { v.AssignInv(a.v); dv.AssignNeg(a.dv).Mul(v).Mul(v); return this; } // (1/f(x))' = - f(x)' / f(x)^2
1068
1069    // (a(x) * b(x))' = b(x)*a(x)' + b(x)'*a(x);
1070    public Dual<V> Mul(Dual<V> a) {
1071      var t1 = a.dv.Clone().Mul(v);
1072      var t2 = dv.Clone().Mul(a.v);
1073      dv.Assign(t1).Add(t2);
1074
1075      v.Mul(a.v);
1076      return this;
1077    }
1078    public Dual<V> Div(Dual<V> a) { Mul(a.Inv()); return this; }
1079
1080    public Dual<V> AssignExp(Dual<V> a) { v.AssignExp(a.v); dv.Assign(a.dv).Mul(v); return this; } // exp(f(x)) = exp(f(x))*f(x)'
1081    public Dual<V> AssignLog(Dual<V> a) { v.AssignLog(a.v); dv.Assign(a.dv).Div(a.v); return this; }     // log(x)' = 1/f(x) * f(x)'
1082
1083    public Dual<V> AssignIntPower(Dual<V> a, int p) { v.AssignIntPower(a.v, p); dv.Assign(a.dv).Scale(p).Mul(a.v.Clone().IntPower(p - 1)); return this; }
1084    public Dual<V> AssignIntRoot(Dual<V> a, int r) { v.AssignIntRoot(a.v, r); dv.Assign(a.dv).Scale(1.0 / r).Mul(a.v.IntRoot(r - 1)); return this; }
1085
1086    public Dual<V> AssignSin(Dual<V> a) { v.AssignSin(a.v); dv.Assign(a.dv).Mul(a.v.Clone().Cos()); return this; }
1087    public Dual<V> AssignCos(Dual<V> a) { v.AssignCos(a.v); dv.AssignNeg(a.dv).Mul(a.v.Clone().Sin()); return this; }
1088    public Dual<V> AssignTanh(Dual<V> a) { v.AssignTanh(a.v); dv.Assign(a.dv.Mul(v.Clone().IntPower(2).Neg().Add(Value.One))); return this; }
1089
1090    public Dual<V> AssignAbs(Dual<V> a) { v.AssignAbs(a.v); dv.Assign(a.dv).Mul(a.v.Clone().Sgn()); return this; }       // abs(f(x))' = f(x)*f'(x) / |f(x)|     
1091    public Dual<V> AssignSgn(Dual<V> a) { v.AssignSgn(a.v); dv.Assign(a.dv.Zero); return this; }
1092
1093    public Dual<V> Clone() { return new Dual<V>(v.Clone(), dv.Clone()); }
1094
1095  }
1096
1097  /// <summary>
1098  /// An algebraic type which has a value as well as the partial derivatives of the value over multiple variables.
1099  /// </summary>
1100  /// <typeparam name="V"></typeparam>
1101  [DebuggerDisplay("v={Value}; dv={dv}")]
1102  public class MultivariateDual<V> : IAlgebraicType<MultivariateDual<V>> where V : IAlgebraicType<V>, new() {
1103    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
1104    private V v;
1105    public V Value => v;
1106
1107    [DebuggerBrowsable(DebuggerBrowsableState.Never)]
1108    private AlgebraicSparseVector<object, V> dv;
1109    public AlgebraicSparseVector<object, V> Gradient => dv; // <key,value> partial derivative identified via the key
1110
1111    private MultivariateDual(MultivariateDual<V> orig) { this.v = orig.v.Clone(); this.dv = orig.dv.Clone(); }
1112
1113    /// <summary>
1114    /// Constructor without partial derivative
1115    /// </summary>
1116    /// <param name="v"></param>
1117    public MultivariateDual(V v) { this.v = v.Clone(); this.dv = new AlgebraicSparseVector<object, V>(); }
1118
1119    /// <summary>
1120    /// Constructor for multiple partial derivatives
1121    /// </summary>
1122    /// <param name="v"></param>
1123    /// <param name="keys"></param>
1124    /// <param name="dv"></param>
1125    public MultivariateDual(V v, object[] keys, V[] dv) { this.v = v.Clone(); this.dv = new AlgebraicSparseVector<object, V>(keys, dv); }
1126
1127    /// <summary>
1128    /// Constructor for a single partial derivative
1129    /// </summary>
1130    /// <param name="v"></param>
1131    /// <param name="key"></param>
1132    /// <param name="dv"></param>
1133    public MultivariateDual(V v, object key, V dv) { this.v = v.Clone(); this.dv = new AlgebraicSparseVector<object, V>(new[] { key }, new[] { dv }); }
1134
1135    /// <summary>
1136    /// Constructor with a given value and gradient. For internal use.
1137    /// </summary>
1138    /// <param name="v">The value (not cloned).</param>
1139    /// <param name="gradient">The gradient (not cloned).</param>
1140    internal MultivariateDual(V v, AlgebraicSparseVector<object, V> gradient) { this.v = v; this.dv = gradient; }
1141
1142    public MultivariateDual<V> Clone() { return new MultivariateDual<V>(this); }
1143
1144    public MultivariateDual<V> Zero => new MultivariateDual<V>(Value.Zero, Gradient.Zero);
1145    public MultivariateDual<V> One => new MultivariateDual<V>(Value.One, Gradient.Zero);
1146
1147    public MultivariateDual<V> Scale(double s) { v.Scale(s); dv.Scale(s); return this; }
1148
1149    public MultivariateDual<V> Add(MultivariateDual<V> a) { v.Add(a.v); dv.Add(a.dv); return this; }
1150    public MultivariateDual<V> Sub(MultivariateDual<V> a) { v.Sub(a.v); dv.Sub(a.dv); return this; }
1151    public MultivariateDual<V> Assign(MultivariateDual<V> a) { v.Assign(a.v); dv.Assign(a.dv); return this; }
1152    public MultivariateDual<V> Mul(MultivariateDual<V> a) {
1153      // (a(x) * b(x))' = b(x)*a(x)' + b(x)'*a(x);
1154      var t1 = a.dv.Clone().Scale(v);
1155      var t2 = dv.Clone().Scale(a.v);
1156      dv.Assign(t1).Add(t2);
1157
1158      v.Mul(a.v);
1159      return this;
1160    }
1161    public MultivariateDual<V> Div(MultivariateDual<V> a) { v.Div(a.v); dv.Mul(a.dv.Inv()); return this; }
1162    public MultivariateDual<V> AssignNeg(MultivariateDual<V> a) { v.AssignNeg(a.v); dv.AssignNeg(a.dv); return this; }
1163    public MultivariateDual<V> AssignInv(MultivariateDual<V> a) { v.AssignInv(a.v); dv.AssignNeg(a.dv).Scale(v).Scale(v); return this; }   // (1/f(x))' = - f(x)' / f(x)^2
1164
1165    public MultivariateDual<V> AssignSin(MultivariateDual<V> a) { v.AssignSin(a.v); dv.Assign(a.dv).Scale(a.v.Clone().Cos()); return this; }
1166    public MultivariateDual<V> AssignCos(MultivariateDual<V> a) { v.AssignCos(a.v); dv.AssignNeg(a.dv).Scale(a.v.Clone().Sin()); return this; }
1167    public MultivariateDual<V> AssignTanh(MultivariateDual<V> a) { v.AssignTanh(a.v); dv.Assign(a.dv.Scale(v.Clone().IntPower(2).Neg().Add(Value.One))); return this; }     // tanh(f(x))' = f(x)'sech²(f(x)) = f(x)'(1 - tanh²(f(x)))
1168
1169    public MultivariateDual<V> AssignIntPower(MultivariateDual<V> a, int p) { v.AssignIntPower(a.v, p); dv.Assign(a.dv).Scale(p).Scale(a.v.Clone().IntPower(p - 1)); return this; }
1170    public MultivariateDual<V> AssignIntRoot(MultivariateDual<V> a, int r) { v.AssignIntRoot(a.v, r); dv.Assign(a.dv).Scale(1.0 / r).Scale(a.v.IntRoot(r - 1)); return this; }
1171
1172    public MultivariateDual<V> AssignExp(MultivariateDual<V> a) { v.AssignExp(a.v); dv.Assign(a.dv).Scale(v); return this; } // exp(f(x)) = exp(f(x))*f(x)'     
1173    public MultivariateDual<V> AssignLog(MultivariateDual<V> a) { v.AssignLog(a.v); dv.Assign(a.dv).Scale(a.v.Clone().Inv()); return this; }     // log(x)' = 1/f(x) * f(x)'
1174
1175    public MultivariateDual<V> AssignAbs(MultivariateDual<V> a) { v.AssignAbs(a.v); dv.Assign(a.dv).Scale(a.v.Clone().Sgn()); return this; }      // abs(f(x))' = f(x)*f'(x) / |f(x)|  doesn't work for intervals     
1176    public MultivariateDual<V> AssignSgn(MultivariateDual<V> a) { v.AssignSgn(a.v); dv = a.dv.Zero; return this; } // sign(f(x))' = 0;     
1177
1178  }
1179}
Note: See TracBrowser for help on using the repository browser.