{"id":18854380,"url":"https://github.com/urbanjost/m_random","last_synced_at":"2026-03-19T06:44:23.780Z","repository":{"id":117558270,"uuid":"429665487","full_name":"urbanjost/M_random","owner":"urbanjost","description":"A collection of routines related to pseudo-random numbers","archived":false,"fork":false,"pushed_at":"2024-04-30T00:08:16.000Z","size":1793,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-08T07:04:19.594Z","etag":null,"topics":["fortran-package-manager","fpm","pseudorandom","random","random-number-generator","rng"],"latest_commit_sha":null,"homepage":"","language":"Fortran","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/urbanjost.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-19T04:06:55.000Z","updated_at":"2024-04-30T00:08:20.000Z","dependencies_parsed_at":"2024-05-05T02:00:31.255Z","dependency_job_id":null,"html_url":"https://github.com/urbanjost/M_random","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/urbanjost/M_random","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urbanjost%2FM_random","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urbanjost%2FM_random/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urbanjost%2FM_random/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urbanjost%2FM_random/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/urbanjost","download_url":"https://codeload.github.com/urbanjost/M_random/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/urbanjost%2FM_random/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29037528,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T06:39:36.383Z","status":"ssl_error","status_checked_at":"2026-02-03T06:39:32.787Z","response_time":96,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["fortran-package-manager","fpm","pseudorandom","random","random-number-generator","rng"],"created_at":"2024-11-08T03:48:04.029Z","updated_at":"2026-02-03T07:34:13.087Z","avatar_url":"https://github.com/urbanjost.png","language":"Fortran","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Name\n   M_random(3f) - a module of pseudo random procedures\n   (LICENSE: See procedures, primarily MIT)\n## Synopsis\n```text\n   use M_random, only: init_random_seed_by_system_clock\n   use M_random, only: init_random_seed_by_dat\n   use M_random, only: init_random_seed\n   \n   use M_random, only: random_string\n   use M_random, only: random_hex\n   use M_random, only: random_int\n   \n   use M_random, only: random_kiss64\n   use M_random, only: scramble\n   \n   use M_random, only: mtprng_state, mtprng_init, mtprng_init_by_array, \u0026\n   \u0026 mtprng_rand64, mtprng_rand\n   use M_random, only: mtprng_rand_range, mtprng_rand_real1, \u0026\n   \u0026 mtprng_rand_real2, mtprng_rand_real3\n```\n## Description\n  The M_random(3fm) module contains routines to support pseudorandom number\n  generation. This includes supplements for the Fortran intrinsic\n  random_seed(3f).\n\n---\n![gmake](docs/images/gnu.gif)\n---\n\n## Building the Module using Make(1)\n     git clone https://github.com/urbanjost/M_random.git\n     cd M_random/src\n     # change Makefile if not using one of the listed compilers\n     \n     # for gfortran\n     make clean\n     make F90=gfortran gfortran\n     \n     # for ifort\n     make clean\n     make F90=ifort ifort\n\n     # for nvfortran\n     make clean\n     make F90=nvfortran nvfortran\n\nThis will compile the Fortran module and basic example\nprogram that exercise the routine.\n\n---\n![-](docs/images/fpm_logo.gif)\n---\n\n## Build and Test with FPM\n\n   Alternatively, download the github repository and build it with\n   fpm ( as described at [Fortran Package Manager](https://github.com/fortran-lang/fpm) )\n\n   ```bash\n        git clone https://github.com/urbanjost/M_random.git\n        cd M_random\n        fpm run \"*\"\n        fpm run --example \"*\"\n        fpm test\n   ```\n\n   or just list it as a dependency in your fpm.toml project file.\n\n```toml\n        [dependencies]\n        M_random        = { git = \"https://github.com/urbanjost/M_random.git\" }\n```\n---\n![docs](docs/images/docs.gif)\n---\n\n## Documentation\n\n### User\n\n   - A single page that uses javascript to combine all the HTML\n     descriptions of the man-pages is at \n     [BOOK_M_random](https://urbanjost.github.io/M_random/BOOK_M_random.html).\n\n   - a simple index to the man-pages in HTML form for the\n   [routines](https://urbanjost.github.io/M_random/man3.html) \n   and [programs](https://urbanjost.github.io/M_random/man1.html) \n\n   - ![man-pages](docs/images/manpages.gif)\n\n     There are man-pages in the repository download in the docs/ directory\n     that may be installed on ULS (Unix-Like Systems).\n\n   + [manpages.zip](https://urbanjost.github.io/M_random/manpages.zip)\n   + [manpages.tgz](https://urbanjost.github.io/M_random/manpages.tgz)\n\n   - [CHANGELOG](docs/CHANGELOG.md) provides a history of significant changes\n\n### Developer\n   - [ford(1) output](https://urbanjost.github.io/M_random/fpm-ford/index.html).\n\u003c!--\n   - [doxygen(1) output](https://urbanjost.github.io/M_random/doxygen_out/html/index.html).\n--\u003e\n   - [github action status](docs/STATUS.md) \n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furbanjost%2Fm_random","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Furbanjost%2Fm_random","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Furbanjost%2Fm_random/lists"}