//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // complex // pow(const T& x, const complex& y); #include #include #include "../cases.h" template void test(const T& a, const std::complex& b, std::complex x) { std::complex c = pow(a, b); is_about(real(c), real(x)); assert(std::abs(imag(c)) < 1.e-6); } template void test() { test(T(2), std::complex(2), std::complex(4)); } void test_edges() { const double pi = std::atan2(+0., -0.); const unsigned N = sizeof(x) / sizeof(x[0]); for (unsigned i = 0; i < N; ++i) { for (unsigned j = 0; j < N; ++j) { std::complex r = pow(real(x[i]), x[j]); std::complex z = exp(x[j] * log(std::complex(real(x[i])))); if (std::isnan(real(r))) assert(std::isnan(real(z))); else { assert(real(r) == real(z)); } if (std::isnan(imag(r))) assert(std::isnan(imag(z))); else { assert(imag(r) == imag(z)); } } } } int main() { test(); test(); test(); test_edges(); }