{"id":19141490,"url":"https://github.com/erigontech/gmp-wasm","last_synced_at":"2025-06-10T09:35:19.722Z","repository":{"id":104103937,"uuid":"321917052","full_name":"erigontech/gmp-wasm","owner":"erigontech","description":"Fork of the GNU Multiple Precision Arithmetic Library (GMP), suitable for compilation into WebAssembly.","archived":false,"fork":false,"pushed_at":"2020-12-16T10:51:32.000Z","size":4229,"stargazers_count":17,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-06T23:46:54.347Z","etag":null,"topics":["gmp","wasm","webassembly"],"latest_commit_sha":null,"homepage":"https://gmplib.org","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/erigontech.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2020-12-16T08:27:02.000Z","updated_at":"2025-03-24T16:40:59.000Z","dependencies_parsed_at":"2023-08-24T12:10:53.051Z","dependency_job_id":null,"html_url":"https://github.com/erigontech/gmp-wasm","commit_stats":null,"previous_names":["erigontech/gmp-wasm"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erigontech%2Fgmp-wasm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erigontech%2Fgmp-wasm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erigontech%2Fgmp-wasm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erigontech%2Fgmp-wasm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erigontech","download_url":"https://codeload.github.com/erigontech/gmp-wasm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erigontech%2Fgmp-wasm/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259048743,"owners_count":22797791,"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":["gmp","wasm","webassembly"],"created_at":"2024-11-09T07:23:33.930Z","updated_at":"2025-06-10T09:35:19.701Z","avatar_url":"https://github.com/erigontech.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"Copyright 1991, 1996, 1999, 2000, 2007 Free Software Foundation, Inc.\n\nThis file is part of the GNU MP Library.\n\nThe GNU MP Library is free software; you can redistribute it and/or modify\nit under the terms of either:\n\n  * the GNU Lesser General Public License as published by the Free\n    Software Foundation; either version 3 of the License, or (at your\n    option) any later version.\n\nor\n\n  * the GNU General Public License as published by the Free Software\n    Foundation; either version 2 of the License, or (at your option) any\n    later version.\n\nor both in parallel, as here.\n\nThe GNU MP Library is distributed in the hope that it will be useful, but\nWITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\nor FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License\nfor more details.\n\nYou should have received copies of the GNU General Public License and the\nGNU Lesser General Public License along with the GNU MP Library.  If not,\nsee https://www.gnu.org/licenses/.\n\n\n\n\n\n\n\t\t\tTHE GNU MP LIBRARY\n\n\nGNU MP is a library for arbitrary precision arithmetic, operating on signed\nintegers, rational numbers, and floating point numbers.  It has a rich set of\nfunctions, and the functions have a regular interface.\n\nGNU MP is designed to be as fast as possible, both for small operands and huge\noperands.  The speed is achieved by using fullwords as the basic arithmetic\ntype, by using fast algorithms, with carefully optimized assembly code for the\nmost common inner loops for lots of CPUs, and by a general emphasis on speed\n(instead of simplicity or elegance).\n\nGNU MP is believed to be faster than any other similar library.  Its advantage\nincreases with operand sizes for certain operations, since GNU MP in many\ncases has asymptotically faster algorithms.\n\nGNU MP is free software and may be freely copied on the terms contained in the\nfiles COPYING* (see the manual for information on which license(s) applies to\nwhich components of GNU MP).\n\n\n\n\t\t\tOVERVIEW OF GNU MP\n\nThere are four classes of functions in GNU MP.\n\n 1. Signed integer arithmetic functions (mpz).  These functions are intended\n    to be easy to use, with their regular interface.  The associated type is\n    `mpz_t'.\n\n 2. Rational arithmetic functions (mpq).  For now, just a small set of\n    functions necessary for basic rational arithmetics.  The associated type\n    is `mpq_t'.\n\n 3. Floating-point arithmetic functions (mpf).  If the C type `double'\n    doesn't give enough precision for your application, declare your\n    variables as `mpf_t' instead, set the precision to any number desired,\n    and call the functions in the mpf class for the arithmetic operations.\n\n 4. Positive-integer, hard-to-use, very low overhead functions are in the\n    mpn class.  No memory management is performed.  The caller must ensure\n    enough space is available for the results.  The set of functions is not\n    regular, nor is the calling interface.  These functions accept input\n    arguments in the form of pairs consisting of a pointer to the least\n    significant word, and an integral size telling how many limbs (= words)\n    the pointer points to.\n\n    Almost all calculations, in the entire package, are made by calling these\n    low-level functions.\n\nFor more information on how to use GNU MP, please refer to the documentation.\nIt is composed from the file doc/gmp.texi, and can be displayed on the screen\nor printed.  How to do that, as well how to build the library, is described in\nthe INSTALL file in this directory.\n\n\n\n\t\t\tREPORTING BUGS\n\nIf you find a bug in the library, please make sure to tell us about it!\n\nYou should first check the GNU MP web pages at https://gmplib.org/, under\n\"Status of the current release\".  There will be patches for all known serious\nbugs there.\n\nReport bugs to gmp-bugs@gmplib.org.  What information is needed in a useful bug\nreport is described in the manual.  The same address can be used for suggesting\nmodifications and enhancements.\n\n\n\n\n----------------\nLocal variables:\nmode: text\nfill-column: 78\nEnd:\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferigontech%2Fgmp-wasm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferigontech%2Fgmp-wasm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferigontech%2Fgmp-wasm/lists"}