Arithmetics for large integers
-
Hi,
I'm looking for a possibility to use arithmetics for arbitrarily large
integers in objective c. Is there a special class or an framework that
does the job?
Thanks in advance
Horst -
On Fri, Nov 7, 2008 at 7:32 AM, Horst Jäger <h.jaeger...> wrote:
> Hi,
> I'm looking for a possibility to use arithmetics for arbitrarily large
> integers in objective c. Is there a special class or an framework that does
> the job?
Maybe vBigNum....
http://developer.apple.com/documentation/Darwin/Reference/ManPages/man7/vBi
gNum.7.html
-Shawn -
I use the GNU MP package (http://gmplib.org/) I had to tweak XCode 3 to
get it to build 64-bit clean for the intel arch. It is used in a PI
calculator I wrote and it is *brutally* fast and efficient. While it is
all a raw C dylib, One could easily write a framework around it.
Shawn Erickson wrote:
> On Fri, Nov 7, 2008 at 7:32 AM, Horst Jäger <h.jaeger...> wrote:
>
>> Hi,
>> I'm looking for a possibility to use arithmetics for arbitrarily large
>> integers in objective c. Is there a special class or an framework that does
>> the job?
>>
>
> Maybe vBigNum....
>
> http://developer.apple.com/documentation/Darwin/Reference/ManPages/man7/vBi
gNum.7.html
>
> -Shawn
>
--
* Martin C. Stoufer *
* DIDC/DSD/ITG *
* Lawrence Berkeley National Lab *
* MS 50B-2215 510-486-8662 *



