(
input: string,
priorForms: CanonicalForm[] = ['Number']
)
| 265 | canonical = ["Divide", ["Multiply", 2, "x", "y"], ["Multiply", "a", "b"]] |
| 266 | simplify = (2x * y) / (a * b) |
| 267 | `); |
| 268 | }); |
| 269 | |
| 270 | describe('Power', () => { |
| 271 | const engine = new ComputeEngine(); |
| 272 | |
| 273 | /* |
no test coverage detected