From 2d406986aa946856f6125b254743dcbb63726575 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Sat, 26 Sep 2009 12:11:08 -0700 Subject: [PATCH] Formula for GMP GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. There is no practical limit to the precision except the ones implied by the available memory in the machine GMP runs on. GMP has a rich set of functions, and the functions have a regular interface. --- Formula/gmp.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Formula/gmp.rb diff --git a/Formula/gmp.rb b/Formula/gmp.rb new file mode 100644 index 0000000000..6603e3b097 --- /dev/null +++ b/Formula/gmp.rb @@ -0,0 +1,20 @@ +require 'brewkit' + +class Gmp