Go to the source code of this file.
◆ dataLoad() [1/2]
Definition at line 281 of file MooseRandomStateless.h.
282{
286}
void dataLoad(std::istream &stream, MooseRandomStateless &v, void *context)
void advance(std::size_t count)
Advance all generators by the specified number.
Referenced by dataLoad(), and dataLoad().
◆ dataLoad() [2/2]
template<>
| void dataLoad |
( |
std::istream & |
stream, |
|
|
std::unique_ptr< MooseRandomStateless > & |
v, |
|
|
void * |
context |
|
) |
| |
|
inline |
Definition at line 299 of file MooseRandomStateless.h.
300{
301 unsigned int seed;
303 v = std::make_unique<MooseRandomStateless>(seed);
305}
◆ dataStore() [1/2]
Definition at line 273 of file MooseRandomStateless.h.
274{
277}
void dataStore(std::ostream &stream, MooseRandomStateless &v, void *context)
std::size_t getAdvanceCount() const
Get the amount that the RNGs have advanced by advance(count) calls.
Referenced by dataStore(), and dataStore().
◆ dataStore() [2/2]
template<>
| void dataStore |
( |
std::ostream & |
stream, |
|
|
std::unique_ptr< MooseRandomStateless > & |
v, |
|
|
void * |
context |
|
) |
| |
|
inline |