The GNU Multiple-Precision Library (GMP) is a mature, free library for arbitrary-precision arithmetic with support for big signed integers, rational numbers, and floating point numbers. It is distributed under the GNU LGPL and is used for cryptography applications and in computer algebra systems ...

learn more… | top users | synonyms

0
votes
1answer
18 views

installing mpir with mingw [closed]

I am trying to install MPIR on my windows7 pc. I extracted the folder called mpir-2.6.0 into C:\MinGW. In the instructions for installation, on line number 175, they say ./configure make I ...
0
votes
1answer
15 views

GMP compile error: No rule to make target `mpn/add_n.lo', needed by `libgmp.la'

I am compiling the VLC for Android on Ubuntu 12.04, basing on this instruction Always get this error when compiling the libgmp ibstdc++/4.7/include ...
1
vote
0answers
35 views

Incompatible libgmp.a error when building Pycrypto 2.6

I have build the gmp 5.1.1 library using gcc 4.7.2 all in the Windows-7 environment. I configured the build with ./configure and commanded the make and after finished the make check without any ...
-1
votes
0answers
17 views

Extracting gmp folder [closed]

I downloaded the newest version of GMP from gmplib.org. The name of the file is gmp-5.1.1.tar.lz When I click on it, it says windows can't open this file. I searched how to install, and I read that ...
0
votes
0answers
43 views

fwrite in C with paillier cryptosystem library functions

I have seen all the other Q&As regarding fwrite() but haven't been able get my code right. The following is the structure and function signature given in the paillier header file: /*This is a ...
0
votes
0answers
41 views

Perl6 pbc_to_exe error (how to build gmp)?

I try to convert Perl6 script to executable: perl6.exe --target=PIR hello.pl > hello.pir parrot.exe -o hello.pbc hello.pir pbc_to_exe.exe hello.pbc > hello error output: ld.exe: cannot find ...
0
votes
1answer
26 views

cross-compilation using mingw32 and gmp

I am currently trying to cross-compile a c++ code I wrote which worked perfectly fine on Linux. I installed mingw32, and compiled libgmp as a windows library ( .a ) using something like that : ...
0
votes
1answer
62 views

Cannot allocate memory when using GMP library

I need to compute three two-dimensional arrays. When I tried to initialize the array using GMP library. I got the following error: GNU MP: Cannot allocate memory (size=16) Aborted (core dumped) My ...
0
votes
1answer
36 views

gmp_pow() will not accept a GMP number for exponent

I am playing around in PHP with RSA and big numbers. I need to be able to take numbers to the power of an exponent that has ~256 to ~512 bytes using gmp_pow(). Does anyone have any suggestions?
1
vote
1answer
88 views

Installing GMP on Windows with cygwin

I am totally new to C++. I need to deal with very large integers, so I have to install GMP. I am using Cygwin (on Windows, of course). Any documentation I can find on installing this already assumes ...
0
votes
0answers
36 views

C - use of gmp on Spoj shows compilation error

I am working on next palindrome problem .There i got introduced to gmp library . I tried myself the working of gmp library as follows #include <stdio.h> #include <stdlib.h> #include ...
0
votes
1answer
40 views

How to assign a binary value to mpz_class object

I want to assign a binary value to mpz_class object I have a binary number 10011101111001111100010111000011111010010. I want to assign it to value object i.e(mpz_class value) thanks
0
votes
1answer
28 views

How to change precision of mpf_class after default inicialization?

I need to encapsulate mpf_class from MPIR library into my class A: class A { mpf_class a; // default constructor - default precision public: A(){ a = ...
0
votes
1answer
90 views

Build GMP on Windows 32-Bit

Hello I am trying to compile gmp because I need it for a Perl Module. I have to install eveyrthing manually because the machine doesent have access to the Internet. I runned configure and used this ...
0
votes
0answers
67 views

switching between double and gmp

I'd like to switch to gmp for high precision arithmetic. But I am not sure what is a computationally cheap way to do it. How can this be done in a portable manner? Are there alternatives to computing ...
1
vote
1answer
44 views

Why does gcc require gmp?

As anyone who has ever built gcc from source knows, gmp is a dependency for gcc. Why is this? In other words, what does gcc actually use it for?
-1
votes
2answers
99 views

Using valgrind on a Mac [closed]

I have a piece of c++ code about 600 lines long which currently doesn't run due to seg fault. I have run gdb but it isn't really helping me as I don't know what I am looking for. I have also run ...
1
vote
1answer
104 views

How to generate a random number within a certain range using GMP

I have tried to do this as follows: int main(){ mpz_t v; mpf_class u,w,x[3][200]; for(i=0;i<n;i++){ for(j=0;j<3;j++){ mpz_random(v,1000000); ...
1
vote
2answers
63 views

Alternative bignum library to GMP library that supports cosine function [closed]

Does anyone have a recommendation I am working on Mac OSX and trying to write and run C++ code. I am running the code to answer the mathematical question known as the "Tammes Problem". I have a ...
-3
votes
1answer
72 views

Seg Fault 11, (issue with GMP and initialisation??)

I have a segmentation fault 11 in this piece of code (edit:no longer shown). Having been told to get a debugger and to sort my arrays out I have edited the code to fix the arrays to go from 0. I also ...
0
votes
1answer
99 views

Keeping accuracy when taking decimal to power of integer

My code is as follows (I have simplified it for ease of reading, sorry for the lack of functions): #include <stdio.h> #include <string.h> #include <math.h> #include ...
0
votes
1answer
40 views

Matrix in GMP library (in C)

I am trying to define a matrix in gmp but I am getting error reports. This is a slightly simplified version of my program: #include<stdio.h> #include<math.h> #include<stdlib.h> ...
0
votes
0answers
28 views

How to deep copy with MIPR/GNU MP?

I made a std::vector-like class in order to handle floating point values accurately, and be able to switch easily between reading backwards and forward. template <typename T> class Series { ...
1
vote
1answer
85 views

C++ - MPIR: mpz_t to std::string?

How do we convert mpz_t to std::string? mpz_t Var; // Var = 5000 mpz_init_set_ui( Var, 5000 ); std::string Str = ""; // Convert Var to std::string? mpz_clear( Var );
1
vote
2answers
64 views

C++ Rewriting a recursive function to nonrecursive - involves MPIR & very difficult

I am having a really hard time coverting a function from recursive to a nonrecursive function that uses MPIR's library variable, "mpz_t" instead of "unsigned __int64". I am also trying to think about ...
0
votes
1answer
91 views

Cast mpz_class to int

Using gmp, I declare: mpz_class x = 0; but now if I want to use x as an index of an array, like so: textArray[x]; I get this error "error: no match for 'operator[]' in 'testArray[x]'" So how do ...
1
vote
1answer
98 views

Using GMP for C++ Ubuntu 12.04

I'm trying to use the GMP library on Ubuntu 12.04 for C++ and am having trouble. I installed it fine but can't get any of my programs to work with it and they say "undefined reference to '_gmpf_add' ...
0
votes
1answer
93 views

base 16 to base 2^64 conversion in GMP

I read in some hex numbers and I then would like to convert them to base 2^64. Unfortunately as this number cannot be stored in an int, it seems there is no function in GMP that can help me solve this ...
1
vote
4answers
286 views

Pycrypto install fatal error: gmp.h file not found

It seems like there are a number of people who have had a similar problem, however, after much searching I haven't been able to find a solution that works with my particular architecture. I'm trying ...
0
votes
1answer
67 views

Parsing decimal values with GMP?

How can I parse a decimal value exactly? That is, I have a string of the value, like "43.879" and I wish to get an exact GMP value. I'm not clear from the docs how, or whether this is actually ...
1
vote
1answer
82 views

numpy array with mpz/mpfr values

I want to have a numpy array with mpz/mpfr values. Because my code: import numpy as np import gmpy2 A=np.ones((5,5)); print A/gmpy2.mpfr(1); generates: RuntimeWarning: invalid value encountered in ...
1
vote
2answers
43 views

What is the result of arithmetics with mpz variables?

I am trying to do some arithmetic with gmpy2 in python. Unfortunately I don't know what are the types of returned values of this arithmetics. For example: ...
0
votes
1answer
28 views

An error when installing MPFR (3.1.0)

I am trying to install MPFR (3.1.0) with the instructions from this link (part 3) and I get the following error: checking for gmp internal files... configure: error: header files gmp-impl.h and ...
0
votes
2answers
88 views

gmpy source code

Is there any way I can look at the source code of gympy? To be specific, gmpy2.is_prime. I tried various links https://code.google.com/p/gmpy/source/checkout ...
3
votes
1answer
188 views

C++ Boost Large Number Storage

So based on the question I asked earlier, I downloaded and setup boost. I have this code: #include <stdlib.h> #include <boost\multiprecision\gmp.hpp> using namespace std; using namespace ...
1
vote
1answer
240 views

Installing gmpy on Mac OS X Mountain Lion

I cannot install gmpy (1 or 2) on OS X Mountain Lion without warnings. I tried pip, I tried compiling, I installed gcc 4.2.1 and tried to compile gmp with i386 arch (though my Mac is 64bit), none of ...
0
votes
0answers
90 views

downloading and using gmp Xcode 4.4

I have seen other questions relating to this but I'm having trouble with the basics. My computer and programming knowledge is very limited, please bear with me. I am using Xcode4.4 for c++ on a ...
2
votes
1answer
160 views

GCD algorithms for arbitrary-precision arithmetic

I am completely stuck with this question, so I am looking for any help. I think everybody knows about basic GCD computation algorithms like binary or euclidean GCD. It is not a problem to implement ...
1
vote
1answer
192 views

Can't get GMP lib compiling with Emscripten

I've tried the instructions here with the latest version of Emscripten: https://github.com/kripken/gmp.js/blob/master/README.markdown The .a file seems to be correctly created. I then try to compile ...
1
vote
0answers
48 views

Why is gmp.so not copied to the right location when compiling PHP to use it as a shared library?

I recently recompiled PHP CLI to use the GMP extension as a shared library and installed it using dpkg -i I was using the source provided by the Ubuntu package of PHP5 (apt-get source php5). ...
3
votes
2answers
102 views

Cross-compiling gmp with mingw-w64: inlining and multiple defintions

I'm trying to cross-compile VLC (from linux to windows) with gnutls support which in turn uses libgmp. I get linking errors for multiple definitions for symbols in libgmp (___gmpz_abs), for example, ...
2
votes
1answer
89 views

GCD computation issues with GNU MP Library

I have a question about GNU MP, could you please help me how to proceed with that. I using "The GNU Multiple Precision Arithmetic Library" Edition 5.1.1 on Windows. (MinGW\gcc + MSYS) There is an ...
0
votes
1answer
50 views

Python gmpy2 f_divmod function confusion

I'm pretty new to python and i just started playing with gmpy2, but i'm a little confused about one of the functions and gmpy's documentation isn't helpful in this regard: I'd like to do division ...
1
vote
1answer
61 views

Segfault during call to mpz_import in gmp library

I want to load 64 bit integers into gmp using the mpz_import method, I am aware I could achieve this by streaming the number out to a string and then using the assign operator but this is surely ...
0
votes
2answers
165 views

Compiling C program using GCC with GMP library error: “ld: symbol(s) not found for architecture x86_64”

I'm trying to compile a C program (gfp2.c) that uses many functions from the GMP library. I downloaded and installed the GMP library using the normal configure, make and install sequence. I also ran ...
1
vote
0answers
29 views

hash of libgmp.so changes automatically

I am using libgmp.so.3.3.3 in my application on RHEL 5.3. From my application I am taking the hash of /usr/lib64/libgmp.so.3.3.3 through sha512sum utility. My requirement is that the hash of gmp ...
1
vote
0answers
74 views

Using big integers with gmp and machine limits

I wonder if it is possible to use integers bigger than the value of .Machine$double.xmax (~1.79e308) in R. I thought that by using e.g. Rmpfr or gmp libraries in R you could assign values of any size, ...
0
votes
1answer
51 views

Implementation of mdi_init of the gmp library in C

I am trying to implement my own version of the GMP mpz_t data type in C. For that , I am facing a problem in defining the structure for mpz_t. This is because I am defining my mpz_t like this ...
0
votes
3answers
110 views

Calculating Pi using GMP [closed]

I'm trying to calculate Pi using GMP(5.1.0) with this series: What i have done is: #include <stdio.h> #include <gmp.h> mpz_t pi; mpz_t next; // Every number in the serie that comes ...
1
vote
0answers
157 views

Does GMP support armv7s?

I tried to use GMP for iPad application. Unfortunately, it failed to running with XCode 4.5.1 by incorrect architecture of library - armv7s. Undefined symbols for architecture armv7s: ...

1 2 3 4 5 6