Go to the source code of this file.
◆ dataLoad() [1/2]
Definition at line 281 of file MooseRandomStateless.h.
282{
286}
void loadHelper(std::istream &stream, P &data, void *context)
Scalar helper routine.
void advance(std::size_t count)
Advance all generators by the specified number.
◆ 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 storeHelper(std::ostream &stream, P &data, void *context)
Scalar helper routine.
std::size_t getAdvanceCount() const
Get the amount that the RNGs have advanced by advance(count) calls.
◆ dataStore() [2/2]
template<>
| void dataStore |
( |
std::ostream & |
stream, |
|
|
std::unique_ptr< MooseRandomStateless > & |
v, |
|
|
void * |
context |
|
) |
| |
|
inline |