2017-10-04 06:00:05 -04:00
|
|
|
# Tests domain errors in special math functions
|
|
|
|
|
|
|
|
try:
|
|
|
|
import math
|
2020-03-22 22:26:08 -04:00
|
|
|
|
2017-10-04 06:00:05 -04:00
|
|
|
math.erf
|
|
|
|
except (ImportError, AttributeError):
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
inf = float("inf")
|
|
|
|
nan = float("nan")
|
|
|
|
|
|
|
|
# single argument functions
|
|
|
|
for name, f, args in (
|
|
|
|
("expm1", math.exp, ()),
|
|
|
|
("log2", math.log2, (-1, 0)),
|
|
|
|
("log10", math.log10, (-1, 0)),
|
|
|
|
("sinh", math.sinh, ()),
|
|
|
|
("cosh", math.cosh, ()),
|
|
|
|
("tanh", math.tanh, ()),
|
|
|
|
("asinh", math.asinh, ()),
|
|
|
|
("acosh", math.acosh, (-1, 0.9, 1)),
|
|
|
|
("atanh", math.atanh, (-1, 1)),
|
|
|
|
("erf", math.erf, ()),
|
|
|
|
("erfc", math.erfc, ()),
|
|
|
|
("gamma", math.gamma, (-2, -1, 0, 1)),
|
|
|
|
("lgamma", math.lgamma, (-2, -1, 0, 1)),
|
|
|
|
):
|
2018-09-04 03:03:37 -04:00
|
|
|
for x in args + (inf, -inf, nan):
|
2017-10-04 06:00:05 -04:00
|
|
|
try:
|
2023-02-15 18:27:10 -05:00
|
|
|
ans = "%.4f" % f(x)
|
2017-10-04 06:00:05 -04:00
|
|
|
except ValueError:
|
2023-02-15 18:27:10 -05:00
|
|
|
ans = "ValueError"
|
2017-10-04 06:00:05 -04:00
|
|
|
except OverflowError:
|
2023-02-15 18:27:10 -05:00
|
|
|
ans = "OverflowError"
|
|
|
|
print("%s(%.4f) = %s" % (name, x, ans))
|