Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace AutoDiff.Compiled
|
---|
7 | {
|
---|
8 | interface ITapeVisitor
|
---|
9 | {
|
---|
10 | void Visit(Constant elem);
|
---|
11 | void Visit(Exp elem);
|
---|
12 | void Visit(Log elem);
|
---|
13 | void Visit(ConstPower elem);
|
---|
14 | void Visit(TermPower elem);
|
---|
15 | void Visit(Product elem);
|
---|
16 | void Visit(Sum elem);
|
---|
17 | void Visit(Variable var);
|
---|
18 | void Visit(UnaryFunc elem);
|
---|
19 | void Visit(BinaryFunc elem);
|
---|
20 | void Visit(NaryFunc elem);
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.