Skip to content

Instantly share code, notes, and snippets.

View erthink's full-sized avatar
🎀
White Hat & Head: clip.dqd.kfa @ PositiveTechnologies

Леонид Юрьев (Leonid Yuriev) erthink

🎀
White Hat & Head: clip.dqd.kfa @ PositiveTechnologies
View GitHub Profile
@imneme
imneme / xoroshiro.hpp
Last active December 3, 2020 22:37
A C++ implementation of a family of Xoroshiro+ generators
#ifndef XOROSHIRO_HPP_INCLUDED
#define XOROSHIRO_HPP_INCLUDED 1
/*
* A C++ implementation of a family of Xoroshiro generators.
*
* See:
* https://en.wikipedia.org/wiki/Xoroshiro128%2B
* http://xoroshiro.di.unimi.it/xoroshiro128plus.c
*