Raymond Toy pushed to branch issue-276-xoroshiro128starstar at cmucl / cmucl
Commits: 88e0e74f by Raymond Toy at 2024-03-13T13:01:17-07:00 Fix comment about old xoroshiro128+
We use xoroshiro128** everywhere now, fix up comments referencing old xoroshiro128+.
- - - - - b309998d by Raymond Toy at 2024-03-13T13:02:02-07:00 Pull updates for ansi-test repo
If the ansi-test repo already exists, we need to pull any updates in case the repo has had changes made since it was last cloned.
- - - - -
2 changed files:
- bin/run-ansi-tests.sh - src/code/rand-xoroshiro.lisp
Changes:
===================================== bin/run-ansi-tests.sh ===================================== @@ -33,8 +33,9 @@ shift $[$OPTIND - 1]
set -x if [ -d ../ansi-test ]; then - # We already have clone; make sure it's clean by stashing any changes. - (cd ../ansi-test; git stash) + # We already have clone; make sure it's clean by stashing any + # changes. Then pull any updates. + (cd ../ansi-test; git stash; git pull --rebase) else (cd ../; git clone https://gitlab.common-lisp.net/cmucl/ansi-test.git) fi
===================================== src/code/rand-xoroshiro.lisp ===================================== @@ -10,7 +10,7 @@ ;;; ;;; ********************************************************************** ;;; -;;; Support for the xoroshiro128+ random number generator by David +;;; Support for the xoroshiro128** random number generator by David ;;; Blackman and Sebastiano Vigna (vigna@acm.org). See ;;; http://xoroshiro.di.unimi.it/.
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/b80289c54de16cdbfb49ad2...