| 1 | import math |
| 2 | |
| 3 | fn test_acosh() { |
| 4 | assert math.close(math.acosh(1234567890.12345), 21.627134039822003) |
| 5 | assert math.close(math.acosh(12.123456789), 3.1865840454481904) |
| 6 | } |
| 7 | |
| 8 | fn test_asinh() { |
| 9 | assert math.close(math.asinh(1234567890.12345), 21.627134039822003) |
| 10 | assert math.close(math.asinh(12.123456789), 3.1899859431901603) |
| 11 | } |
| 12 |