source:
stable/HeuristicLab.ExtLibs/HeuristicLab.AutoDiff/1.0/AutoDiff-1.0/Compiled/BinaryFunc.cs
@
15817
Last change on this file since 15817 was 8703, checked in by gkronber, 12 years ago | |
---|---|
File size: 467 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace AutoDiff.Compiled |
7 | { |
8 | class BinaryFunc : TapeElement |
9 | { |
10 | public int Left; |
11 | public int Right; |
12 | public Func<double, double, double> Eval; |
13 | public Func<double, double, Tuple<double, double>> Diff; |
14 | |
15 | public override void Accept(ITapeVisitor visitor) |
16 | { |
17 | visitor.Visit(this); |
18 | } |
19 | } |
20 | } |
Note: See TracBrowser
for help on using the repository browser.