commit f14c72718c4c02ec97ff005e88af58e17180b009 parent a2cec35a0d3353f5c8ba2a8d4151328d9a998673 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Wed, 13 Dec 2017 10:16:13 +0100 Write the 0.6 release note Diffstat:
| M | README.md | | | 15 | +++++++++++++-- |
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md @@ -29,14 +29,25 @@ standard on current Microsoft compilers. For this platform install the Boost random library. Then generate the CMake project as above, excepted that you need to add the Boost install directory to -the `CMAKE_PREFIX_PATH` variable and to set the `BOOST_INCLUDEDIR` cmake +the `CMAKE_PREFIX_PATH` variable and to set the `BOOST_INCLUDEDIR` cmake variable to the directory that contains the `boost` include directory. ## Release notes +### Version 0.6 + +- Add the `ssp_rng_proxy_create2` function that allows to tune the sub sets of + pseudo random numbers that the proxy generator can use. Pseudo random numbers + that do not lie in these partitions are skipped by the proxy. Thanks to this + functionality, on can create several proxies, each generating its own set of + pseudo random numbers that does not overlap the sequences of the other + proxies. +- Update the version of the RSys dependency to 0.6: replace the deprecated + `[N]CHECK` macros by the new macro `CHK`. + ### Version 0.5 -- Rename the ssp_ran_uniform_disk API call into ssp_ran_uniform_disk_local. +- Rename the `ssp_ran_uniform_disk` API call into `ssp_ran_uniform_disk_local`. - Add a more general version of the uniform disk random variate allowing users to provide the disk's normal. - Add a float equivalent for all the already defined double random variates.