()
| 237 | yield v |
| 238 | |
| 239 | def bin_randfloat(): |
| 240 | for i in range(1000): |
| 241 | l1 = random.choice(TESTCASES) |
| 242 | l2 = random.choice(TESTCASES) |
| 243 | yield random.choice(l1), random.choice(l2) |
| 244 | |
| 245 | def tern_randfloat(): |
| 246 | for i in range(1000): |
no test coverage detected
searching dependent graphs…