Skip to content
New issue

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

Replace random number implementations in src/gnu with std library and random123 gen #1861

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 2 additions & 14 deletions cmake/NeuronFileLists.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -448,22 +448,10 @@ set(SCOPMATH_FILES_LIST
set(NRNMPI_FILES_LIST nrnmpi.cpp bbsmpipack.cpp mpispike.cpp)

set(NRNGNU_FILES_LIST
ACG.cpp
Binomial.cpp
DiscUnif.cpp
Erlang.cpp
Geom.cpp
HypGeom.cpp
LogNorm.cpp
MLCG.cpp
NegExp.cpp
Normal.cpp
Poisson.cpp
RNG.cpp
Random.cpp
RndInt.cpp
Uniform.cpp
Weibull.cpp)
RNG_random123.cpp
Random.cpp)

# nrnpython sources (only if ${NRN_ENABLE_PYTHON_DYNAMIC} is OFF}
set(NRNPYTHON_FILES_LIST
Expand Down
293 changes: 0 additions & 293 deletions src/gnu/ACG.cpp

This file was deleted.

68 changes: 0 additions & 68 deletions src/gnu/ACG.h

This file was deleted.

Loading