Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.12/HeuristicLab.ExtLibs/HeuristicLab.AutoDiff/1.0/AutoDiff-1.0/CompiledDifferentiator.Eval.cs @ 13398

Last change on this file since 13398 was 8703, checked in by gkronber, 12 years ago

#1960 added HL wrapper plugin for AutoDiff

File size: 2.3 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace AutoDiff
7{
8    partial class CompiledDifferentiator<T>
9    {
10        private class EvalVisitor : Compiled.ITapeVisitor
11        {
12            private readonly Compiled.TapeElement[] tape;
13
14            public EvalVisitor(Compiled.TapeElement[] tape)
15            {
16                this.tape = tape;
17            }
18
19            public void Visit(Compiled.Constant elem)
20            {
21            }
22
23            public void Visit(Compiled.Exp elem)
24            {
25                elem.Value = Math.Exp(ValueOf(elem.Arg));
26            }
27
28            public void Visit(Compiled.Log elem)
29            {
30                elem.Value = Math.Log(ValueOf(elem.Arg));
31            }
32
33            public void Visit(Compiled.ConstPower elem)
34            {
35                elem.Value = Math.Pow(ValueOf(elem.Base), elem.Exponent);
36            }
37
38            public void Visit(Compiled.TermPower elem)
39            {
40                elem.Value = Math.Pow(ValueOf(elem.Base), ValueOf(elem.Exponent));
41            }
42
43            public void Visit(Compiled.Product elem)
44            {
45                elem.Value = ValueOf(elem.Left) * ValueOf(elem.Right);
46            }
47
48            public void Visit(Compiled.Sum elem)
49            {
50                elem.Value = 0;
51                for (int i = 0; i < elem.Terms.Length; ++i)
52                    elem.Value += ValueOf(elem.Terms[i]);
53            }
54
55            public void Visit(Compiled.Variable var)
56            {
57            }
58
59            public void Visit(Compiled.UnaryFunc elem)
60            {
61                elem.Value = elem.Eval(ValueOf(elem.Arg));
62            }
63
64            public void Visit(Compiled.BinaryFunc elem)
65            {
66                elem.Value = elem.Eval(ValueOf(elem.Left), ValueOf(elem.Right));
67            }
68
69            public void Visit(Compiled.NaryFunc elem)
70            {
71                double[] args = new double[elem.Terms.Length];
72                for(int i=0;i<args.Length;i++)
73                    args[i] = ValueOf(elem.Terms[i]);
74                elem.Value = elem.Eval(args);
75            }
76
77            private double ValueOf(int index)
78            {
79                return tape[index].Value;
80            }
81
82
83        }
84    }
85}
Note: See TracBrowser for help on using the repository browser.