Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the best (for speed) arbitrary-precision library for C++? [duplicate]

I need the fastest library that is available for C++. My platform will be x86 and x86-64 which supports floating points.

like image 352
Victor Avatar asked Dec 20 '10 04:12

Victor


1 Answers

GMPLIB

GMP is a free library for arbitrary precision arithmetic, operating on signed ... C++ class based interface to all of the above.

like image 185
Sudantha Avatar answered Nov 07 '22 05:11

Sudantha