up vote 2 down vote favorite
5
share [g+] share [fb]

What arbitrary-precision integers (and or rationals) library are there for compilers running on Microsoft Windows, and which would you recommend?

Please state license type / cost, supported compilers (i.e. GCC and or VC++) for the library.

link|improve this question

62% accept rate
feedback

4 Answers

up vote 7 down vote accepted

GMP.

LGPL. Standard download from official website is designed for GCC. VC++ port is available from here.

link|improve this answer
1  
I can't in all honesty recommend GMP for serious work since it has the nasty habit of exiting violently on out-of-memory problems. This is, in my opinion, unforgivable in what's supposed to be a general purpose library. Don't get me wrong, it's still good and blindingly fast, but only for personal or non-production stuff where you can put up with crashes. – paxdiablo Feb 3 '11 at 17:58
feedback

OpenSSL BN type. BSD-style license, pretty sure it's available for windows.

link|improve this answer
feedback

I have not used it, so I'm pointing you here blind:

LibTomMath by Tom St Denis: http://math.libtomcrypt.com/

Public Domain license. Website mentions that the library builds out of the box with GCC 2.95 [and up] as well as Visual C++ v6.00 [with SP5] without configuration.

A companion book is available: http://www.amazon.com/dp/1597491128

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.