Skip to content

Commit 9d47746

Browse files
committed
Remove redundant rewrite in f64 negation test
1 parent f101b14 commit 9d47746

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

python/tests/test_high_level.py

-7
Original file line numberDiff line numberDiff line change
@@ -233,12 +233,5 @@ def test_f64_negation() -> None:
233233

234234
# expr3 = -(-2.0)
235235
expr3 = egraph.define("expr3", -(-f64(2.0)))
236-
237-
x, y = vars_("x y", f64)
238-
239-
egraph.register(rewrite(-(-x)).to(x))
240-
241-
egraph.run(10)
242-
243236
egraph.check(eq(expr1).to(-expr2))
244237
egraph.check(eq(expr3).to(expr2))

0 commit comments

Comments
 (0)