Interpretable evaluates an Activation and produces a value.
| 28 | |
| 29 | // Interpretable evaluates an Activation and produces a value. |
| 30 | type Interpretable interface { |
| 31 | // ID value corresponding to the expression node. |
| 32 | ID() int64 |
| 33 | |
| 34 | // Eval evaluates an Activation and produces an output. |
| 35 | Eval(activation Activation) ref.Val |
| 36 | } |
| 37 | |
| 38 | // InterpretableV2 evaluates an ExecutionFrame and produces a value. |
| 39 | // |
no outgoing calls
no test coverage detected