forked from sagemath/sage-archive-2023-02-01
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PARI/GP 2.15 is out, and homebrew, gentoo, arch, debian-unstable already have the new version. - giac does not build, see [[https://trac.sagemath.org/raw- attachment/ticket/34537/giac-1.9.0.15p0.log|giac-1.9.0.15p0.log]] URL: https://trac.sagemath.org/34537 Reported by: vdelecroix Ticket author(s): Bill Allombert, Vincent Delecroix, Antonio Rojas Reviewer(s): Dima Pasechnik, John Cremona
- Loading branch information
Showing
57 changed files
with
346 additions
and
454 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=7d95f0aa4a25b8160594f08bf5832fdad6774ee1 | ||
md5=08d682dfb7eae43af051188205449f02 | ||
cksum=1634731426 | ||
sha1=989f4d14dd5ffaa6ec10c3574eb05bf8936bc493 | ||
md5=b5c5cde1e8679d1859d8535ed9df961c | ||
cksum=2678132185 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
272c557d1f34fab9617dcf289a13bc7f51e2854e | ||
156046b3bdfd1913720f061f9cd1cd9b23487041 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
ANYARG patch | ||
|
||
diff --git a/src/pari.cc b/src/pari.cc | ||
index 76ce8e1..50d08ab 100644 | ||
--- a/src/pari.cc | ||
+++ b/src/pari.cc | ||
@@ -40,6 +40,13 @@ using namespace std; | ||
|
||
#ifdef HAVE_LIBPARI | ||
|
||
+// Anyarg disappeared from PARI 2.15.0 | ||
+#ifdef __cplusplus | ||
+# define ANYARG ... | ||
+#else | ||
+# define ANYARG | ||
+#endif | ||
+ | ||
#ifdef HAVE_PTHREAD_H | ||
#include <pthread.h> | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
tarball=pari-VERSION.tar.gz | ||
sha1=e01647aab7e96a8cb4922cf26a4f224337c6647f | ||
md5=922f740fcdf8630b30d63dc76b58f756 | ||
cksum=297133525 | ||
sha1=498e3cd0b7ded8be3fa1cba1125ca5213ed39453 | ||
md5=562a6e973ca3980dc6c1eb2c4f252e92 | ||
cksum=4081416981 | ||
upstream_url=https://pari.math.u-bordeaux.fr/pub/pari/unix/pari-VERSION.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.13.3 | ||
2.15.2.p1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/src/basemath/ellsea.c b/src/basemath/ellsea.c | ||
index a6871fa6a7..05f148eadd 100644 | ||
--- a/src/basemath/ellsea.c | ||
+++ b/src/basemath/ellsea.c | ||
@@ -852,7 +852,8 @@ find_isogenous_from_Atkin(GEN a4, GEN a6, ulong ell, struct meqn *MEQN, GEN g, G | ||
GEN a4t, a6t, h; | ||
a4a6t(&a4t, &a6t, ell, E4t, E6t, T, p); | ||
h = find_kernel(a4, a6, ell, a4t, a6t, pp1, T, p, pp, e); | ||
- if (h) return gerepilecopy(ltop, mkvec3(a4t, a6t, h)); | ||
+ if (h && signe(Fq_elldivpolmod(a4, a6, ell, h, T, pp))==0) | ||
+ return gerepilecopy(ltop, mkvec3(a4t, a6t, h)); | ||
} | ||
} | ||
pari_err_BUG("find_isogenous_from_Atkin, kernel not found"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.