(expr: string)
| 2 | import { ComputeEngine } from '../../src/compute-engine'; |
| 3 | import { engine } from '../utils'; |
| 4 | |
| 5 | function parse(expr: string): Expression { |
| 6 | return engine.parse(expr)!; |
| 7 | } |
| 8 | |
| 9 | // Helper to create D expressions using MathJSON directly. |
no test coverage detected