diff --git a/refimpl/ref_mt19937.cpp b/refimpl/ref_mt19937.cpp index 767e87b..0146b79 100644 --- a/refimpl/ref_mt19937.cpp +++ b/refimpl/ref_mt19937.cpp @@ -1,7 +1,13 @@ /* * Reference implementation of Mersenne Twister MT19937 in C++11. * - * Test bench by Joris van Rantwijk. + * Written in 2016 by Joris van Rantwijk + * + * To the extent possible under law, the author(s) have dedicated all copyright + * and related and neighboring rights to this software to the public domain + * worldwide. This software is distributed without any warranty. + * + * See */ #include diff --git a/refimpl/ref_xoroshiro.c b/refimpl/ref_xoroshiro.c index c3337af..a23694e 100644 --- a/refimpl/ref_xoroshiro.c +++ b/refimpl/ref_xoroshiro.c @@ -1,12 +1,14 @@ /* * Reference implementation of "xoroshiro128+" in C. * - * Algorithm by David Blackman and Sebastiano Vigna. - * Test bench by Joris van Rantwijk. + * Algorithm code by David Blackman and Sebastiano Vigna + * Main program wrapper by Joris van Rantwijk * * To the extent possible under law, the author has dedicated all copyright * and related and neighboring rights to this software to the public domain * worldwide. This software is distributed without any warranty. + * + * See */ #include @@ -15,7 +17,7 @@ /* ========== BEGIN of reference implementation of xoroshiro128+ ========== - * See also http://xoroshiro.di.unimi.it/ + * Source: http://xoroshiro.di.unimi.it/ */ /* Written in 2016 by David Blackman and Sebastiano Vigna (vigna@acm.org)