Home | History | Annotate | Download | only in complex.transcendentals
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 // <complex>
     11 
     12 // template<class T>
     13 //   complex<T>
     14 //   asin(const complex<T>& x);
     15 
     16 #include <complex>
     17 #include <cassert>
     18 
     19 #include "../cases.h"
     20 
     21 template <class T>
     22 void
     23 test(const std::complex<T>& c, std::complex<T> x)
     24 {
     25     assert(asin(c) == x);
     26 }
     27 
     28 template <class T>
     29 void
     30 test()
     31 {
     32     test(std::complex<T>(0, 0), std::complex<T>(0, 0));
     33 }
     34 
     35 void test_edges()
     36 {
     37     const double pi = std::atan2(+0., -0.);
     38     const unsigned N = sizeof(testcases) / sizeof(testcases[0]);
     39     for (unsigned i = 0; i < N; ++i)
     40     {
     41         std::complex<double> r = asin(testcases[i]);
     42         if (testcases[i].real() == 0 && testcases[i].imag() == 0)
     43         {
     44             assert(std::signbit(r.real()) == std::signbit(testcases[i].real()));
     45             assert(std::signbit(r.imag()) == std::signbit(testcases[i].imag()));
     46         }
     47         else if (std::isfinite(testcases[i].real()) && std::isinf(testcases[i].imag()))
     48         {
     49             assert(r.real() == 0);
     50             assert(std::signbit(testcases[i].real()) == std::signbit(r.real()));
     51             assert(std::isinf(r.imag()));
     52             assert(std::signbit(testcases[i].imag()) == std::signbit(r.imag()));
     53         }
     54         else if ( testcases[i].real() == 0 && std::isnan(testcases[i].imag()))
     55         {
     56             assert(r.real() == 0);
     57             assert(std::signbit(testcases[i].real()) == std::signbit(r.real()));
     58             assert(std::isnan(r.imag()));
     59         }
     60         else if (std::isfinite(testcases[i].real()) && std::isnan(testcases[i].imag()))
     61         {
     62             assert(std::isnan(r.real()));
     63             assert(std::isnan(r.imag()));
     64         }
     65         else if (std::isinf(testcases[i].real()) && std::isfinite(testcases[i].imag()))
     66         {
     67             if (testcases[i].real() > 0)
     68                 is_about(r.real(),  pi/2);
     69             else
     70                 is_about(r.real(), - pi/2);
     71             assert(std::isinf(r.imag()));
     72             assert(std::signbit(testcases[i].imag()) == std::signbit(r.imag()));
     73         }
     74         else if (std::isinf(testcases[i].real()) && std::isinf(testcases[i].imag()))
     75         {
     76             if (std::signbit(testcases[i].real()))
     77                 is_about(r.real(), -pi/4);
     78             else
     79                 is_about(r.real(),  pi/4);
     80             assert(std::isinf(r.imag()));
     81             assert(std::signbit(testcases[i].imag()) == std::signbit(r.imag()));
     82         }
     83         else if (std::isinf(testcases[i].real()) && std::isnan(testcases[i].imag()))
     84         {
     85             assert(std::isnan(r.real()));
     86             assert(std::isinf(r.imag()));
     87             assert(std::signbit(testcases[i].real()) != std::signbit(r.imag()));
     88         }
     89         else if (std::isnan(testcases[i].real()) && std::isfinite(testcases[i].imag()))
     90         {
     91             assert(std::isnan(r.real()));
     92             assert(std::isnan(r.imag()));
     93         }
     94         else if (std::isnan(testcases[i].real()) && std::isinf(testcases[i].imag()))
     95         {
     96             assert(std::isnan(r.real()));
     97             assert(std::isinf(r.imag()));
     98         }
     99         else if (std::isnan(testcases[i].real()) && std::isnan(testcases[i].imag()))
    100         {
    101             assert(std::isnan(r.real()));
    102             assert(std::isnan(r.imag()));
    103         }
    104         else
    105         {
    106             assert(std::signbit(r.real()) == std::signbit(testcases[i].real()));
    107             assert(std::signbit(r.imag()) == std::signbit(testcases[i].imag()));
    108         }
    109     }
    110 }
    111 
    112 int main()
    113 {
    114     test<float>();
    115     test<double>();
    116     test<long double>();
    117     test_edges();
    118 }
    119