├── Makefile ├── README.md ├── derand.cpp ├── derand.hpp ├── derand.py ├── equation.cpp ├── equation.hpp ├── gauss.cpp ├── gauss.hpp ├── mtrand.cpp ├── mtrand.hpp ├── server.cpp ├── server.hpp ├── test_components.cpp ├── test_components.hpp ├── test_derand.py ├── unroll.cpp └── unroll.hpp /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/README.md -------------------------------------------------------------------------------- /derand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/derand.cpp -------------------------------------------------------------------------------- /derand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/derand.hpp -------------------------------------------------------------------------------- /derand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/derand.py -------------------------------------------------------------------------------- /equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/equation.cpp -------------------------------------------------------------------------------- /equation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/equation.hpp -------------------------------------------------------------------------------- /gauss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/gauss.cpp -------------------------------------------------------------------------------- /gauss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/gauss.hpp -------------------------------------------------------------------------------- /mtrand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/mtrand.cpp -------------------------------------------------------------------------------- /mtrand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/mtrand.hpp -------------------------------------------------------------------------------- /server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/server.cpp -------------------------------------------------------------------------------- /server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/server.hpp -------------------------------------------------------------------------------- /test_components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/test_components.cpp -------------------------------------------------------------------------------- /test_components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/test_components.hpp -------------------------------------------------------------------------------- /test_derand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/test_derand.py -------------------------------------------------------------------------------- /unroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/unroll.cpp -------------------------------------------------------------------------------- /unroll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeorgeArgyros/mt_derand/HEAD/unroll.hpp --------------------------------------------------------------------------------