We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A PkgEval run for a PR which changes the generated numbers for randn! indicates that the tests of this package might fail in Julia 1.5 (and on Julia current master). Apologies if this is a false positive. cf. https://github.com/JuliaCI/NanosoldierReports/blob/7de24e455342298cbef56826b5827f0d7640d2c1/pkgeval/by_hash/b89e35c_vs_098ef24/logs/CausalInference/1.5.0-DEV-71a4a114c2.log
randn!
The text was updated successfully, but these errors were encountered:
Do we have an easy way to access the old random number generator?
Sorry, something went wrong.
I'm afraid not. One (temporary) solution for tests might be to redefine the old randn!, e.g.
function Base.randn!(rng::MersenneTwister, A::Array{Float64}) for i in eachindex(A) @inbounds A[i] = randn(rng, Float64) end A end
Also, for future immunity you might like to try https://github.com/rfourquet/StableRNGs.jl :)
No branches or pull requests
A PkgEval run for a PR which changes the generated numbers for
randn!
indicates that the tests of this package might fail in Julia 1.5 (and on Julia current master). Apologies if this is a false positive.cf. https://github.com/JuliaCI/NanosoldierReports/blob/7de24e455342298cbef56826b5827f0d7640d2c1/pkgeval/by_hash/b89e35c_vs_098ef24/logs/CausalInference/1.5.0-DEV-71a4a114c2.log
The text was updated successfully, but these errors were encountered: