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 //   sin(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(sin(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     typedef std::complex<double> C;
     38     const double pi = std::atan2(+0., -0.);
     39     const unsigned N = sizeof(x) / sizeof(x[0]);
     40     for (unsigned i = 0; i < N; ++i)
     41     {
     42         std::complex<double> r = sin(x[i]);
     43         std::complex<double> t1(-imag(x[i]), real(x[i]));
     44         std::complex<double> t2 = sinh(t1);
     45         std::complex<double> z(imag(t2), -real(t2));
     46         if (std::isnan(real(r)))
     47             assert(std::isnan(real(z)));
     48         else
     49         {
     50             assert(real(r) == real(z));
     51             assert(std::signbit(real(r)) == std::signbit(real(z)));
     52         }
     53         if (std::isnan(imag(r)))
     54             assert(std::isnan(imag(z)));
     55         else
     56         {
     57             assert(imag(r) == imag(z));
     58             assert(std::signbit(imag(r)) == std::signbit(imag(z)));
     59         }
     60     }
     61 }
     62 
     63 int main()
     64 {
     65     test<float>();
     66     test<double>();
     67     test<long double>();
     68     test_edges();
     69 }
     70