source:
branches/2845_EnhancedProgress/HeuristicLab.ExtLibs/HeuristicLab.AutoDiff/1.0/AutoDiff-1.0/Compiled/TermPower.cs
@
16308
Last change on this file since 16308 was 8703, checked in by gkronber, 12 years ago | |
---|---|
File size: 352 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 TermPower : TapeElement |
9 | { |
10 | public int Base; |
11 | public int Exponent; |
12 | |
13 | public override void Accept(ITapeVisitor visitor) |
14 | { |
15 | visitor.Visit(this); |
16 | } |
17 | } |
18 | } |
Note: See TracBrowser
for help on using the repository browser.