1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/math/asir2000/files/patch-ca
Volker Stolz 0f709c3563 Unreak: Chase pari-devel, update to 20050131
PR:		ports/76881
Submitted by:	Saito Tomokatsu (maintainer)
2005-02-01 16:22:29 +00:00

21 lines
584 B
Plaintext

--- builtin/parif.c.orig Sat Feb 15 07:29:07 2003
+++ builtin/parif.c Fri Jan 7 01:38:45 2005
@@ -95,7 +95,7 @@
{ GEN _pt1_,_pt2_,_pt3_; CALLPARI2(pf,ARG0(ar),ARG1(ar),MKPREC(ar,3,ARG2(ar)),rp); }
#if defined(INTERVAL)
-#define PREC_CONV pariK1
+#define PREC_CONV (0.103810253/(BYTES_IN_LONG/4)) /* log(10)/(SL*log(2)) */
#else
#if defined(LONG_IS_32BIT)
#define PREC_CONV 0.103810253
@@ -243,7 +243,7 @@
GEN p1,p2,p3;
ritopa_i(a,1,&p1); ritopa_i(b,1,&p2);
- p3 = mppgcd(p1,p2);
+ p3 = gcdii(p1,p2);
patori_i(p3,r); asir_cgiv(p3); asir_cgiv(p2); asir_cgiv(p1);
}