Select(Lambda(x, x*x), 7) = 49
(self, kernel)
| 1331 | assert _try_prove(Select(f, IntVal(999)) == IntVal(42)) |
| 1332 | |
| 1333 | def test_lambda_square(self, kernel): |
| 1334 | """Select(Lambda(x, x*x), 7) = 49""" |
| 1335 | x = Int("x") |
| 1336 | f = Lambda([x], x * x) |
| 1337 | assert _try_prove(Select(f, IntVal(7)) == IntVal(49)) |
| 1338 | |
| 1339 | |
| 1340 | # =================================================================== |
nothing calls this directly
no test coverage detected