Я пытаюсь генерировать случайные числа из обычного распределения с использованием умножения boost. Я могу генерировать случайные числа из однородных распределений, но когда я пытался генерировать из стандартного нормального, он сообщает об ошибке. Вот код:Как сгенерировать нормальные случайные числа, используя boost multiprecision?
(следует из Examples from boost, изменение mpz_int к cpp_int и mpf_float_50 к cpp_dec_float_50)
#include <boost/multiprecision/cpp_int.hpp>
#include <boost/multiprecision/cpp_dec_float.hpp>
#include <boost/multiprecision/random.hpp>
#include <boost/multiprecision/number.hpp>
int main()
{
using namespace boost::multiprecision;
using namespace boost::random;
uniform_01<cpp_dec_float_50> uf;
normal_distribution<cpp_dec_float_50> n01(0.0, 1.0);
independent_bits_engine<mt19937, 50L*1000L/301L, cpp_int> gen;
std::cout << std::setprecision(50);
for(unsigned i = 0; i < 1; ++i) {
std::cout << uf(gen) << std::endl;
std::cout << n01(gen) << std::endl;
}
return 0;
}
Однако, я могу генерировать случайные числа из равномерных распределений, но когда я попытался сформировать из стандартный нормальный, он показывает:
g ++ -I/~/boost/boost_1_58_0 -O0 -g3 -Wall -c -fmessage-length = 0 -MMD -MP -MF "test_boost.d" -MT "test_boost.d "-o" test_boost.o "" ../test_boost.cpp "
boost/boost_1_58_0/boost_1_58_0/boost_1_58_0/boost/random/detail/uniform_int_float.hpp: 63: ошибка: недействительный static_cast от типа 'boost :: multiprecision :: detail :: expression>, (boost :: multiprecision :: expression_template_option) 1u> , boost :: multiprecision :: number>, (boost :: multiprecision :: expression_template_option) 1u>, void, void> 'для ввода long unsigned int
Я использую gcc версии 4.4.7 и 64-разрядный Linux система. Огромное спасибо.
(я также пытался использовать пример бустера для генерации случайных чисел, но у меня есть много ошибок, просто включаю, например: ошибки: «STRUCT подталкивания :: multiprecision :: бэкэндов :: gmp_int» имеет не член с именем «данные»)
Я изменил код немного:
#include <boost/multiprecision/random.hpp>
#include <boost/random.hpp>
#include <boost/multiprecision/cpp_int.hpp>
#include <boost/multiprecision/cpp_dec_float.hpp>
int main() {
namespace mp = boost::multiprecision;
boost::uniform_01<mp::cpp_dec_float_50> uf;
boost::normal_distribution<mp::cpp_dec_float_50> n01(0.0, 1.0);
boost::random::independent_bits_engine<boost::mt19937, 50L * 1000L/301L, mp::number<mp::cpp_int::backend_type, mp::et_off> > gen;
std::cout << std::setprecision(50);
for (unsigned i = 0; i < 10; ++i) {
std::cout << uf(gen) << std::endl;
std::cout << n01(gen) << std::endl;
}
return 0;
}
Вот полное сообщение об ошибке:
**** Инкрементального Сложение конфигурационных для отладки project test_boost **** сделать все Файл здания: ../test_boost.cpp Вызов: Компилятор Cross G ++ g ++ -I/~/boost/boost_1_58_0 -O0 -g3 -Wall -c -fmessage-length = 0 - MMD -MP -MF "test_boost.d" -MT "test_boost.d" -o "test_boost.o" "../test_boost.cpp"
В файле включены из
~/boost/boost_1_58_0/boost/random/uniform_int_distribution.hpp:29,
из
~/boost/boost_1_58_0/boost/random/random_number_generator.hpp:20,
от
~/boost/boost_1_58_0/boost/random.hpp:54,
от
~/boost/boost_1_58_0/boost/multiprecision/random.hpp:31,
от
../test_boost.cpp:114:
~/импульс/boost_1_58_0/повышающего/случайное/Detail/uniform_int_float.hpp: В функции члена
‘typename boost::uint_t<((std::numeric_limits::digits < std::numeric_limits::digits) ? std::numeric_limits::digits : std::numeric_limits::digits)>::fast boost::random::detail::uniform_int_float<URNG>::operator()() [with URNG = boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> >]’:
~/boost/boost_1_58_0/boost/random/uniform_int_distribution.hpp:67: instantiated from ‘T boost::random::detail::generate_uniform_int(Engine&, T, T, mpl_::true_) [with Engine = boost::random::detail::uniform_int_float<boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> > >, T = int]’
~/boost/boost_1_58_0/boost/random/uniform_int_distribution.hpp:222: instantiated from ‘T boost::random::detail::generate_uniform_int(Engine&, T, T, mpl_::false_) [with Engine = boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> >, T = int]’
~/boost/boost_1_58_0/boost/random/uniform_int_distribution.hpp:230: instantiated from ‘T boost::random::detail::generate_uniform_int(Engine&, T, T) [with Engine = boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> >, T = int]’
~/boost/boost_1_58_0/boost/random/uniform_int_distribution.hpp:353: instantiated from ‘IntType boost::random::uniform_int_distribution<IntType>::operator()(Engine&) const [with Engine = boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> >, IntType = int]’
~/boost/boost_1_58_0/boost/random/normal_distribution.hpp:195: instantiated from ‘std::pair<RealType, int> boost::random::detail::generate_int_float_pair(Engine&, mpl_::false_) [with RealType = boost::multiprecision::number<boost::multiprecision::backends::cpp_dec_float<50u, int, void>, (boost::multiprecision::expression_template_option)1u>, long unsigned int w = 8ul, Engine = boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> >]’
~/boost/boost_1_58_0/boost/random/normal_distribution.hpp:205: instantiated from ‘std::pair<RealType, int> boost::random::detail::generate_int_float_pair(Engine&) [with RealType = boost::multiprecision::number<boost::multiprecision::backends::cpp_dec_float<50u, int, void>, (boost::multiprecision::expression_template_option)1u>, long unsigned int w = 8ul, Engine = boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> >]’
~/boost/boost_1_58_0/boost/random/normal_distribution.hpp:216: instantiated from ‘RealType `boost::random::detail::unit_normal_distribution<RealType>::operator()(Engine&) [with Engine = boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> >, RealType = boost::multiprecision::number<boost::multiprecision::backends::cpp_dec_float<50u, int, void>, (boost::multiprecision::expression_template_option)1u>]’`
~/boost/boost_1_58_0/boost/random/normal_distribution.hpp:357: instantiated from ‘RealType `boost::random::normal_distribution<RealType>::operator()(Engine&) [with Engine = boost::random::independent_bits_engine<boost::random::mersenne_twister_engine<unsigned int, 32ul, 624ul, 397ul, 31ul, 2567483615u, 11ul, 4294967295u, 7ul, 2636928640u, 15ul, 4022730752u, 18ul, 1812433253u>, 166ul, boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u> >, RealType = boost::multiprecision::number<boost::multiprecision::backends::cpp_dec_float<50u, int, void>, (boost::multiprecision::expression_template_option)1u>]’`
../test_boost.CPP: 135: инстанцирован здесь
~/импульс/boost_1_58_0/повышающего/случайное/Detail/uniform_int_float.hpp: 63: ошибка: недопустимый static_cast от типа‘boost::multiprecision::number<boost::multiprecision::backends::cpp_int_backend<0u, 0u, (boost::multiprecision::cpp_integer_type)1u, (boost::multiprecision::cpp_int_check_type)0u, std::allocator<unsigned int> >, (boost::multiprecision::expression_template_option)0u>’ to type ‘long unsigned int’
марка: *** [test_boost. о] Ошибка 1
17:21:45 отделка (взял 910ms)
Большое вам спасибо. Я использую ваш код, но у меня все та же проблема. На самом деле, я попробовал еще несколько дистрибутивов, и кажется, что генератор случайных чисел не работает с обычными, логарифмическими, студенческими t и не центральными дистрибутивами chi square. Но он работает с равномерным, квадратным, квадратичным, экспоненциальным, гамма-и распределением по Вейбулу. Нужно ли мне что-то настраивать? Я использую boost 1.58.0. Спасибо, аги. – shyab
Пожалуйста, отправьте сообщение SSCCE, показанное выше показывает, что оно может работать. Живые демо не лежат :) – sehe
Позвольте мне скопировать все сообщения об ошибках. – shyab