You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
224 B
15 lines
224 B
5 years ago
|
#ifndef _RNG_ALGOS_H
|
||
|
#define _RNG_ALGOS_H
|
||
|
|
||
|
#include "rng.h"
|
||
|
|
||
|
RNG_IMPL_DEFINITION(xoroshiro128plus);
|
||
|
void xoro_jump();
|
||
|
void xoro_long_jump();
|
||
|
|
||
|
RNG_IMPL_DEFINITION(frng);
|
||
|
|
||
|
RNG_IMPL_DEFINITION(drng);
|
||
|
|
||
|
#endif /* _RNG_ALGOS_H */
|