sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1999
|
sl@0
|
3 |
* Silicon Graphics Computer Systems, Inc.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* Copyright (c) 1999
|
sl@0
|
6 |
* Boris Fomitchev
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* This material is provided "as is", with absolutely no warranty expressed
|
sl@0
|
9 |
* or implied. Any use is at your own risk.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Permission to use or copy this software for any purpose is hereby granted
|
sl@0
|
12 |
* without fee, provided the above notices are retained on all copies.
|
sl@0
|
13 |
* Permission to modify the code and to distribute modified code is granted,
|
sl@0
|
14 |
* provided the above notices are retained, and a notice that the code was
|
sl@0
|
15 |
* modified is included with the above copyright notice.
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
# ifndef COMPLEX_IMPL_H
|
sl@0
|
20 |
# define COMPLEX_IMPL_H
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <complex>
|
sl@0
|
23 |
#include <cmath>
|
sl@0
|
24 |
#include <math.h>
|
sl@0
|
25 |
#include <stl/_cmath.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
# if (defined (__sgi) && !defined(__GNUC__)) /* || defined (__DECCXX) */
|
sl@0
|
28 |
|
sl@0
|
29 |
# define _STLP_ABSF _STLP_VENDOR_CSTD::fabsf
|
sl@0
|
30 |
# define _STLP_ATAN2F _STLP_VENDOR_CSTD::atan2f
|
sl@0
|
31 |
# define _STLP_SINF _STLP_VENDOR_CSTD::sinf
|
sl@0
|
32 |
# define _STLP_COSF _STLP_VENDOR_CSTD::cosf
|
sl@0
|
33 |
# define _STLP_SQRTF _STLP_VENDOR_CSTD::sqrtf
|
sl@0
|
34 |
# define _STLP_EXPF _STLP_VENDOR_CSTD::expf
|
sl@0
|
35 |
# define _STLP_LOG10F _STLP_VENDOR_CSTD::log10f
|
sl@0
|
36 |
# define _STLP_LOGF _STLP_VENDOR_CSTD::logf
|
sl@0
|
37 |
# define _STLP_SINHF _STLP_VENDOR_CSTD::sinhf
|
sl@0
|
38 |
# define _STLP_COSHF _STLP_VENDOR_CSTD::coshf
|
sl@0
|
39 |
# define _STLP_HYPOTF _STLP_VENDOR_CSTD::hypotf
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
# define _STLP_ABSL _STLP_VENDOR_CSTD::fabsl
|
sl@0
|
43 |
# define _STLP_ATAN2L _STLP_VENDOR_CSTD::atan2l
|
sl@0
|
44 |
# define _STLP_SINL _STLP_VENDOR_CSTD::sinl
|
sl@0
|
45 |
# define _STLP_COSL _STLP_VENDOR_CSTD::cosl
|
sl@0
|
46 |
# define _STLP_SQRTL _STLP_VENDOR_CSTD::sqrtl
|
sl@0
|
47 |
# define _STLP_EXPL _STLP_VENDOR_CSTD::expl
|
sl@0
|
48 |
# define _STLP_LOG10L _STLP_VENDOR_CSTD::log10l
|
sl@0
|
49 |
# define _STLP_LOGL _STLP_VENDOR_CSTD::logl
|
sl@0
|
50 |
# define _STLP_SINHL _STLP_VENDOR_CSTD::sinhl
|
sl@0
|
51 |
# define _STLP_COSHL _STLP_VENDOR_CSTD::coshl
|
sl@0
|
52 |
// # define _STLP_HYPOT ::hypot
|
sl@0
|
53 |
# define _STLP_HYPOTL _STLP_VENDOR_CSTD::hypotl
|
sl@0
|
54 |
|
sl@0
|
55 |
#else
|
sl@0
|
56 |
|
sl@0
|
57 |
# define _STLP_ABSF (float)_STLP_DO_ABS(double)
|
sl@0
|
58 |
# define _STLP_ABSL (long double)_STLP_DO_ABS(double)
|
sl@0
|
59 |
# define _STLP_ATAN2F (float)_STLP_DO_ATAN2(double)
|
sl@0
|
60 |
# define _STLP_ATAN2L (long double)_STLP_DO_ATAN2(double)
|
sl@0
|
61 |
# define _STLP_SINF (float)_STLP_DO_SIN(double)
|
sl@0
|
62 |
# define _STLP_SINL (long double)_STLP_DO_SIN(double)
|
sl@0
|
63 |
# define _STLP_COSF (float)_STLP_DO_COS(double)
|
sl@0
|
64 |
# define _STLP_COSL (long double)_STLP_DO_COS(double)
|
sl@0
|
65 |
# define _STLP_SQRTF (float)_STLP_DO_SQRT(double)
|
sl@0
|
66 |
# define _STLP_SQRTL (long double)_STLP_DO_SQRT(double)
|
sl@0
|
67 |
# define _STLP_EXPF (float)_STLP_DO_EXP(double)
|
sl@0
|
68 |
# define _STLP_EXPL (long double)_STLP_DO_EXP(double)
|
sl@0
|
69 |
# define _STLP_LOG10F (float)_STLP_DO_LOG10(double)
|
sl@0
|
70 |
# define _STLP_LOG10L (long double)_STLP_DO_LOG10(double)
|
sl@0
|
71 |
# define _STLP_LOGF (float)_STLP_DO_LOG(double)
|
sl@0
|
72 |
# define _STLP_LOGL (long double)_STLP_DO_LOG(double)
|
sl@0
|
73 |
# define _STLP_SINHF (float)_STLP_DO_SINH(double)
|
sl@0
|
74 |
# define _STLP_SINHL (long double)_STLP_DO_SINH(double)
|
sl@0
|
75 |
# define _STLP_COSHF (float)_STLP_DO_COSH(double)
|
sl@0
|
76 |
# define _STLP_COSHL (long double)_STLP_DO_COSH(double)
|
sl@0
|
77 |
# define _STLP_HYPOTF (float)_STLP_DO_HYPOT(double)
|
sl@0
|
78 |
# define _STLP_HYPOTL (long double)_STLP_DO_HYPOT(double)
|
sl@0
|
79 |
|
sl@0
|
80 |
#endif
|
sl@0
|
81 |
|
sl@0
|
82 |
# define _STLP_ABS (double)_STLP_DO_ABS(double)
|
sl@0
|
83 |
# define _STLP_ATAN2 (double)_STLP_DO_ATAN2(double)
|
sl@0
|
84 |
# define _STLP_SIN (double)_STLP_DO_SIN(double)
|
sl@0
|
85 |
# define _STLP_COS (double)_STLP_DO_COS(double)
|
sl@0
|
86 |
# define _STLP_SQRT (double)_STLP_DO_SQRT(double)
|
sl@0
|
87 |
# define _STLP_EXP (double)_STLP_DO_EXP(double)
|
sl@0
|
88 |
# define _STLP_LOG10 (double)_STLP_DO_LOG10(double)
|
sl@0
|
89 |
# define _STLP_LOG (double)_STLP_DO_LOG(double)
|
sl@0
|
90 |
# define _STLP_SINH (double)_STLP_DO_SINH(double)
|
sl@0
|
91 |
# define _STLP_COSH (double)_STLP_DO_COSH(double)
|
sl@0
|
92 |
# define _STLP_HYPOT _STLP_DO_HYPOT(double)
|
sl@0
|
93 |
|
sl@0
|
94 |
#endif
|