( expr: LatexString | ExpressionInput, options?: Partial<SimplifyOptions> & FreeFunctionOptions )
| 88 | } |
| 89 | |
| 90 | export function simplify( |
| 91 | expr: LatexString | ExpressionInput, |
| 92 | options?: Partial<SimplifyOptions> & FreeFunctionOptions |
| 93 | ): Expression { |
| 94 | return toExpression(expr, options).simplify(options); |
| 95 | } |
| 96 | |
| 97 | export function evaluate( |
| 98 | expr: LatexString | ExpressionInput, |
nothing calls this directly
no test coverage detected