Simplify an expression (placeholder — returns input unchanged).
(expr: ExprRef)
| 749 | |
| 750 | |
| 751 | def simplify(expr: ExprRef) -> ExprRef: |
| 752 | """Simplify an expression (placeholder — returns input unchanged).""" |
| 753 | return expr |
| 754 | |
| 755 | |
| 756 | def set_param(*args: Any, **kws: Any) -> None: |
no outgoing calls