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.
shuffle3/lean/include/rng.h

21 lines
263 B

4 years ago
#ifndef _RNG_H
#define _RNG_H
#ifdef __cplusplus
extern "C" {
#endif
// Tests
void frng_test();
void xorng_test();
void drng_test();
#ifdef __cplusplus
}
// RNG interfaces
#include <rng/frng.hpp>
#include <rng/xoroshiro128plus.hpp>
#endif
4 years ago
#endif /* _RNG_H */