[libclc] Optimize ceil/fabs/floor/rint/trunc (#119596)
[llvm-project.git] / libcxx / test / std / numerics / complex.number / complex.transcendentals / tanh.pass.cpp
blobf48cc88c6a38defa7bfa68cc0852fa1c884212ce
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <complex>
11 // template<class T>
12 // complex<T>
13 // tanh(const complex<T>& x);
15 #include <complex>
16 #include <cassert>
18 #include "test_macros.h"
19 #include "../cases.h"
21 template <class T>
22 void
23 test(const std::complex<T>& c, std::complex<T> x)
25 assert(tanh(c) == x);
28 template <class T>
29 void
30 test()
32 test(std::complex<T>(0, 0), std::complex<T>(0, 0));
35 void test_edges()
37 const unsigned N = sizeof(testcases) / sizeof(testcases[0]);
38 for (unsigned i = 0; i < N; ++i)
40 std::complex<double> r = tanh(testcases[i]);
41 if (testcases[i].real() == 0 && testcases[i].imag() == 0)
43 assert(r.real() == 0);
44 assert(std::signbit(r.real()) == std::signbit(testcases[i].real()));
45 assert(r.imag() == 0);
46 assert(std::signbit(r.imag()) == std::signbit(testcases[i].imag()));
48 else if (std::isfinite(testcases[i].real()) && std::isinf(testcases[i].imag()))
50 assert(std::isnan(r.real()));
51 assert(std::isnan(r.imag()));
53 else if (std::isfinite(testcases[i].real()) && std::isnan(testcases[i].imag()))
55 assert(std::isnan(r.real()));
56 assert(std::isnan(r.imag()));
58 else if (std::isinf(testcases[i].real()) && std::isfinite(testcases[i].imag()))
60 assert(r.real() == (testcases[i].real() > 0 ? 1 : -1));
61 assert(r.imag() == 0);
62 assert(std::signbit(r.imag()) == std::signbit(sin(2 * testcases[i].imag())));
64 else if (std::isinf(testcases[i].real()) && std::isinf(testcases[i].imag()))
66 assert(r.real() == (testcases[i].real() > 0 ? 1 : -1));
67 assert(r.imag() == 0);
69 else if (std::isinf(testcases[i].real()) && std::isnan(testcases[i].imag()))
71 assert(r.real() == (testcases[i].real() > 0 ? 1 : -1));
72 assert(r.imag() == 0);
74 else if (std::isnan(testcases[i].real()) && testcases[i].imag() == 0)
76 assert(std::isnan(r.real()));
77 assert(r.imag() == 0);
78 assert(std::signbit(r.imag()) == std::signbit(testcases[i].imag()));
80 else if (std::isnan(testcases[i].real()) && std::isfinite(testcases[i].imag()))
82 assert(std::isnan(r.real()));
83 assert(std::isnan(r.imag()));
85 else if (std::isnan(testcases[i].real()) && std::isnan(testcases[i].imag()))
87 assert(std::isnan(r.real()));
88 assert(std::isnan(r.imag()));
93 int main(int, char**)
95 test<float>();
96 test<double>();
97 test<long double>();
98 test_edges();
100 return 0;