Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class xoshiro256pp

boost::random::xoshiro256pp

Synopsis

// In header: <boost/random/xoshiro.hpp>


class xoshiro256pp {
public:

  // public member functions
  result_type next() noexcept;
};

Description

This is xoshiro256++ 1.0, one of our all-purpose, rock-solid generators. It has excellent (sub-ns) speed, a state (256 bits) that is large enough for any parallel application, and it passes all tests we are aware of.

For generating just floating-point numbers, xoshiro256+ is even faster.

xoshiro256pp public member functions

  1. result_type next() noexcept;

PrevUpHomeNext