(prec, exp_range, itr)
| 531 | yield randdec(prec, exp_range), None, None |
| 532 | |
| 533 | def all_binary(prec, exp_range, itr): |
| 534 | for a, b in bin_close_to_pow10(prec, exp_range, itr): |
| 535 | yield a, b |
| 536 | for a, b in bin_close_numbers(prec, exp_range, -exp_range, itr): |
| 537 | yield a, b |
| 538 | for a, b in bin_incr_digits(prec, exp_range, itr): |
| 539 | yield a, b |
| 540 | for a, b in bin_randfloat(): |
| 541 | yield a, b |
| 542 | for a, b in bin_random_mixed_op(prec, exp_range, -exp_range, itr): |
| 543 | yield a, b |
| 544 | for a, b in logical_bin_incr_digits(prec, itr): |
| 545 | yield a, b |
| 546 | for _ in range(100): |
| 547 | yield randdec(prec, exp_range), randdec(prec, exp_range) |
| 548 | |
| 549 | def binary_optarg(prec, exp_range, itr): |
| 550 | for _ in range(100): |
searching dependent graphs…