Back to home page

EIC code displayed by LXR

 
 

    


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

0001 ///////////////////////////////////////////////////////////////
0002 //  Copyright Jens Maurer 2006-2011
0003 //  Copyright Steven Watanabe 2011
0004 //  Copyright 2012 John Maddock. Distributed under the Boost
0005 //  Software License, Version 1.0. (See accompanying file
0006 //  LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
0007 
0008 #ifndef BOOST_MP_RANDOM_HPP
0009 #define BOOST_MP_RANDOM_HPP
0010 
0011 #include <boost/multiprecision/detail/standalone_config.hpp>
0012 
0013 #if defined(__GNUC__) || defined(_MSC_VER)
0014 #pragma message("NOTE: Use of this header (boost/multiprecision/random.hpp) is deprecated: please use the random number library headers directly.")
0015 #endif
0016 
0017 #ifndef BOOST_MP_STANDALONE
0018 #include <boost/random.hpp>
0019 #else
0020 #error "Use of this header is removed in standalone mode"
0021 #endif
0022 
0023 #endif