Skip to content

Commit ecf7854

Browse files
mpir -> gmp replacements
1 parent d3d1da1 commit ecf7854

File tree

1,742 files changed

+1766
-1766
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,742 files changed

+1766
-1766
lines changed

Makefile.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ BUILD_DIRS = ulong_extras long_extras perm fmpz fmpz_vec fmpz_poly fmpq_poly \
44
fmpz_poly_mat nmod_poly_mat fmpz_mod_poly fmpz_mod_poly_factor \
55
fmpz_factor fmpz_poly_factor fft qsieve double_extras
66

7-
LIBS=-L$(CURDIR) -L$(FLINT_MPIR_LIB_DIR) -L$(FLINT_MPFR_LIB_DIR) -L$(FLINT_NTL_LIB_DIR) -L$(FLINT_BLAS_LIB_DIR) -lflint $(EXTRA_LIBS) -lmpfr -lmpir -lm -lpthread
8-
LIBS2=-L$(FLINT_MPIR_LIB_DIR) -L$(FLINT_MPFR_LIB_DIR) -L$(FLINT_NTL_LIB_DIR) -L$(FLINT_BLAS_LIB_DIR) $(EXTRA_LIBS) -lmpfr -lmpir -lm -lpthread
9-
INCS=-I$(CURDIR) -I$(FLINT_MPIR_INCLUDE_DIR) -I$(FLINT_MPFR_INCLUDE_DIR) -I$(FLINT_NTL_INCLUDE_DIR) -I$(FLINT_BLAS_INCLUDE_DIR)
7+
LIBS=-L$(CURDIR) -L$(FLINT_GMP_LIB_DIR) -L$(FLINT_MPFR_LIB_DIR) -L$(FLINT_NTL_LIB_DIR) -L$(FLINT_BLAS_LIB_DIR) -lflint $(EXTRA_LIBS) -lmpfr -lgmp -lm -lpthread
8+
LIBS2=-L$(FLINT_GMP_LIB_DIR) -L$(FLINT_MPFR_LIB_DIR) -L$(FLINT_NTL_LIB_DIR) -L$(FLINT_BLAS_LIB_DIR) $(EXTRA_LIBS) -lmpfr -lgmp -lm -lpthread
9+
INCS=-I$(CURDIR) -I$(FLINT_GMP_INCLUDE_DIR) -I$(FLINT_MPFR_INCLUDE_DIR) -I$(FLINT_NTL_INCLUDE_DIR) -I$(FLINT_BLAS_INCLUDE_DIR)
1010

1111
export
1212

arith.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#ifndef ARITH_H
2727
#define ARITH_H
2828

29-
#include <mpir.h>
29+
#include <gmp.h>
3030
#include <mpfr.h>
3131
#include "flint.h"
3232
#include "fmpz.h"

arith/bell_number.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
******************************************************************************/
2525

26-
#include <mpir.h>
26+
#include <gmp.h>
2727
#include "flint.h"
2828
#include "fmpz.h"
2929
#include "arith.h"

arith/bell_number_bsplit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
******************************************************************************/
2525

2626
#include <math.h>
27-
#include <mpir.h>
27+
#include <gmp.h>
2828
#include <mpfr.h>
2929
#include "flint.h"
3030
#include "fmpz.h"

arith/bell_number_multi_mod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
******************************************************************************/
2525

26-
#include <mpir.h>
26+
#include <gmp.h>
2727
#include "flint.h"
2828
#include "fmpz.h"
2929
#include "ulong_extras.h"

arith/bell_number_nmod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
******************************************************************************/
2525

26-
#include <mpir.h>
26+
#include <gmp.h>
2727
#include "flint.h"
2828
#include "arith.h"
2929
#include "ulong_extras.h"

arith/bell_number_nmod_vec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
******************************************************************************/
2525

26-
#include <mpir.h>
26+
#include <gmp.h>
2727
#include "flint.h"
2828
#include "arith.h"
2929
#include "ulong_extras.h"

arith/bell_number_nmod_vec_recursive.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
******************************************************************************/
2525

26-
#include <mpir.h>
26+
#include <gmp.h>
2727
#include "flint.h"
2828
#include "arith.h"
2929
#include "ulong_extras.h"

arith/bell_number_nmod_vec_series.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
******************************************************************************/
2525

26-
#include <mpir.h>
26+
#include <gmp.h>
2727
#include "flint.h"
2828
#include "arith.h"
2929
#include "ulong_extras.h"

arith/bell_number_vec_multi_mod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2424
******************************************************************************/
2525

26-
#include <mpir.h>
26+
#include <gmp.h>
2727
#include "flint.h"
2828
#include "fmpz.h"
2929
#include "fmpz_vec.h"

0 commit comments

Comments
 (0)