File indexing completed on 2025-01-18 09:42:37
0001
0002
0003
0004
0005
0006
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