We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a81af0a commit d531fe6Copy full SHA for d531fe6
python/tests/test_high_level.py
@@ -344,7 +344,7 @@ def incr(x: Math) -> None: ...
344
assert str(x) == "_Math_1 = Math(10)\nincr(_Math_1)\n_Math_1"
345
assert str(x + Math(10)) == "_Math_1 = Math(10)\nincr(_Math_1)\n_Math_1 + Math(10)"
346
347
- i, j = vars_("i j", Math)
+ i, _j = vars_("i j", Math)
348
incr_i = copy(i)
349
incr(incr_i)
350
egraph.register(rewrite(incr_i).to(i + Math(1)), x)
0 commit comments