{"id":21391899,"url":"https://github.com/mannasoumya/ralota","last_synced_at":"2025-03-16T13:26:09.515Z","repository":{"id":146476014,"uuid":"433048722","full_name":"mannasoumya/RALOTA","owner":"mannasoumya","description":"A repo for random number generation algorithms","archived":false,"fork":false,"pushed_at":"2022-06-09T12:27:11.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-23T01:13:42.773Z","etag":null,"topics":["pseudo-random","pseudo-random-generator","pseudorandom","random","random-generation","random-number-generators","randomization","randomizer"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mannasoumya.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-29T13:13:51.000Z","updated_at":"2021-12-05T14:46:35.000Z","dependencies_parsed_at":"2024-05-29T19:22:10.331Z","dependency_job_id":null,"html_url":"https://github.com/mannasoumya/RALOTA","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mannasoumya%2FRALOTA","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mannasoumya%2FRALOTA/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mannasoumya%2FRALOTA/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mannasoumya%2FRALOTA/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mannasoumya","download_url":"https://codeload.github.com/mannasoumya/RALOTA/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243873937,"owners_count":20361727,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pseudo-random","pseudo-random-generator","pseudorandom","random","random-generation","random-number-generators","randomization","randomizer"],"created_at":"2024-11-22T13:38:18.063Z","updated_at":"2025-03-16T13:26:09.490Z","avatar_url":"https://github.com/mannasoumya.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RALOTA : Repository about Random Number Generator Algorithms\r\n###### this name has nothing to do with the algorithms (actually it is also randomly generated through a code)\r\n\r\n## Quick Start\r\n#### WichMann Hill (in [Python](https://www.python.org/))\r\n```console\r\n$ python pseudo_random_num.py  # This is using WichMann_Hill\r\nUsage: python .\\pseudo_random_num.py \u003clower-limit\u003e \u003cupper-limit\u003e \u003chow-many\u003e\r\n$ python pseudo_random_num.py 10 100 5\r\n19\r\n31\r\n40\r\n18\r\n12\r\n```\r\n#### MRG32k3a (in [Julia](https://julialang.org/))\r\n```console\r\n$ julia .\\MRG32k3a.jl\r\nUsage: julia .\\MRG32k3a.jl \u003clower-limit\u003e \u003cupper-limit\u003e \u003chow-many\u003e\r\n$ julia .\\MRG32k3a.jl 10 100 5\r\n50\r\n34\r\n40\r\n78\r\n14\r\n```\r\n#### Xorshift (in [Golang](https://go.dev/))\r\n```console\r\n$ go run .\\xorshift.go\r\nUsage: go run xorshift.go \u003clower-limit\u003e \u003cupper-limit\u003e \u003chow-many\u003e\r\nexit status 1\r\n$ go run .\\xorshift.go 10 100 5\r\n96\r\n40\r\n44\r\n81\r\n90\r\n```\r\n\r\n#### Park Miller (in [Nim](https://nim-lang.org/))\r\n```console\r\n$ nim c .\\Park_Miller.nim \r\n$ .\\Park_Miller.exe \r\n\r\nUsage: 'Park_Miller.exe' \u003chow-many\u003e\r\n\r\n$ .\\Park_Miller.exe 100\r\n```\r\n#### Permuted congruential generator (in [C](https://www.open-std.org/jtc1/sc22/wg14/))\r\n```console\r\n$ gcc permuted_congruential_generator.c -o permuted_congruential_generator\r\n$ ./permuted_congruential_generator\r\n```\r\n\r\n## References\r\n- https://www.math.arizona.edu/~tgk/mc/book_chap3.pdf\r\n- https://en.wikipedia.org/wiki/Random_number_generation\r\n- https://en.wikipedia.org/wiki/Wichmann%E2%80%93Hill\r\n- https://en.wikipedia.org/wiki/Linear_congruential_generator\r\n- https://spec.oneapi.io/versions/latest/elements/oneMKL/source/domains/rng/mkl-rng-mrg32k3a.html\r\n- https://www.jstatsoft.org/article/download/v008i14/916\r\n- https://en.wikipedia.org/wiki/Xorshift\r\n- http://www.thesalmons.org/john/random123/papers/random123sc11.pdf\r\n- https://en.wikipedia.org/wiki/Lehmer_random_number_generator\r\n- https://en.wikipedia.org/wiki/Permuted_congruential_generator\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmannasoumya%2Fralota","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmannasoumya%2Fralota","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmannasoumya%2Fralota/lists"}