Revision as of 22:02, 31 May 2002 editAxelBoldt (talk | contribs)Administrators44,503 editsNo edit summary← Previous edit | Revision as of 16:36, 1 June 2002 edit undoLC~enwiki (talk | contribs)950 editsNo edit summaryNext edit → | ||
Line 1: | Line 1: | ||
A '''bignum''' system in a ] or program allows internal representation of arbitrarily large ]s or arbitrarily precise ]s, by storing numbers as digit lists which can grow using dynamically allocated memory. First implemented in ], it is available in most modern ] and in many other languages (], ], ], ]). The ]/] ] offered bignum facilities as a collection of ]. The ] | A '''bignum''' system in a ] or program allows internal representation of arbitrarily large ]s or arbitrarily precise ]s, such as by storing numbers as ratios of digit lists which can grow using dynamically allocated memory. First implemented in ], it is available in most modern ] and in many other languages (], ], ], ]). The ]/] ] offered bignum facilities as a collection of ]. The ] | ||
is a free ] library that offers bignum features. All ]s contain bignum facilities. | is a free ] library that offers bignum features. All ]s contain bignum facilities. |
Revision as of 16:36, 1 June 2002
A bignum system in a computer or program allows internal representation of arbitrarily large integers or arbitrarily precise rational numbers, such as by storing numbers as ratios of digit lists which can grow using dynamically allocated memory. First implemented in MacLISP, it is available in most modern LISPs and in many other languages (Java, Ruby, Python, Squeak). The VAX/VMS operating system offered bignum facilities as a collection of string functions. The GNU Multi-Precision Library is a free C library that offers bignum features. All computer algebra systems contain bignum facilities.