source:
stable/HeuristicLab.ExtLibs/HeuristicLab.AutoDiff/1.0/AutoDiff-1.0/Compiled/TapeElement.cs
@
13400
Last change on this file since 13400 was 8703, checked in by gkronber, 12 years ago | |
---|---|
File size: 336 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 | abstract class TapeElement |
9 | { |
10 | public double Value; |
11 | public double Adjoint; |
12 | public InputEdge[] Inputs; |
13 | |
14 | public abstract void Accept(ITapeVisitor visitor); |
15 | } |
16 | } |
Note: See TracBrowser
for help on using the repository browser.