Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:42:24

0001 ///////////////////////////////////////////////////////////////////////////////
0002 //  Copyright 2018 John Maddock. Distributed under the Boost
0003 //  Software License, Version 1.0. (See accompanying file
0004 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #ifndef BOOST_MP_COMPLEX128_HPP
0007 #define BOOST_MP_COMPLEX128_HPP
0008 
0009 #include <boost/multiprecision/float128.hpp>
0010 #include <boost/multiprecision/complex_adaptor.hpp>
0011 
0012 namespace boost {
0013 namespace multiprecision {
0014 
0015 template <>
0016 struct component_type<number<complex_adaptor<float128_backend> > >
0017 {
0018    using type = float128;
0019 };
0020 
0021 }
0022 } // namespace boost::multiprecision
0023 
0024 #endif