(expr: Expression)
| 2 | import { ComputeEngine } from '../../src/compute-engine'; |
| 3 | import { isTensor } from '../../src/compute-engine/boxed-expression/type-guards'; |
| 4 | import { engine, exprToString } from '../utils'; |
| 5 | |
| 6 | function evaluate(expr: Expression): string { |
| 7 | return exprToString(engine.expr(expr)?.evaluate({ materialization: true })); |
| 8 | } |
| 9 |
no test coverage detected