1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef BOOST_MATH_TOOLS_COMPLEX_HPP
- #define BOOST_MATH_TOOLS_COMPLEX_HPP
- #include <boost/type_traits/is_complex.hpp>
- namespace boost {
- namespace math {
- namespace tools {
-
-
-
- template <class T>
- struct is_complex_type : public boost::is_complex<T> {};
-
-
-
-
- template <class T, bool = is_complex_type<T>::value>
- struct integer_scalar_type
- {
- typedef int type;
- };
- template <class T>
- struct integer_scalar_type<T, true>
- {
- typedef typename T::value_type type;
- };
- template <class T, bool = is_complex_type<T>::value>
- struct unsigned_scalar_type
- {
- typedef unsigned type;
- };
- template <class T>
- struct unsigned_scalar_type<T, true>
- {
- typedef typename T::value_type type;
- };
- template <class T, bool = is_complex_type<T>::value>
- struct scalar_type
- {
- typedef T type;
- };
- template <class T>
- struct scalar_type<T, true>
- {
- typedef typename T::value_type type;
- };
- } } }
- #endif
|