This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag '9.4.beta6' into t/31881/realset__extend_constructors_so_th…
…at_they_can_build_manifold_objects SageMath version 9.4.beta6, Release Date: 2021-07-24
- Loading branch information
Showing
260 changed files
with
9,986 additions
and
4,044 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SageMath version 9.4.beta5, Release Date: 2021-07-18 | ||
SageMath version 9.4.beta6, Release Date: 2021-07-24 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.19.0 | ||
2.19.0.p0 |
46 changes: 46 additions & 0 deletions
46
...gs/arb/patches/arb-flint-2.8-compatibility-b6c8032e2da1b19eb7c5a5f5c2f3372643e3d170.patch
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,46 @@ | ||
From b6c8032e2da1b19eb7c5a5f5c2f3372643e3d170 Mon Sep 17 00:00:00 2001 | ||
From: fredrik <fredrik.johansson@gmail.com> | ||
Date: Mon, 15 Mar 2021 11:56:24 +0100 | ||
Subject: [PATCH] compatibility fix for latest flint | ||
|
||
--- | ||
acb_modular/epsilon_arg.c | 8 ++++---- | ||
1 file changed, 4 insertions(+), 4 deletions(-) | ||
|
||
diff --git a/acb_modular/epsilon_arg.c b/acb_modular/epsilon_arg.c | ||
index e1332725..b42a64ad 100644 | ||
--- a/acb_modular/epsilon_arg.c | ||
+++ b/acb_modular/epsilon_arg.c | ||
@@ -12,7 +12,7 @@ | ||
#include "acb_modular.h" | ||
|
||
static int | ||
-fmpz_kronecker(const fmpz_t a, const fmpz_t b) | ||
+fmpz_kronecker1(const fmpz_t a, const fmpz_t b) | ||
{ | ||
if (fmpz_sgn(b) < 0) | ||
{ | ||
@@ -20,7 +20,7 @@ fmpz_kronecker(const fmpz_t a, const fmpz_t b) | ||
fmpz_t t; | ||
fmpz_init(t); | ||
fmpz_neg(t, b); | ||
- r = fmpz_kronecker(a, t); | ||
+ r = fmpz_kronecker1(a, t); | ||
fmpz_clear(t); | ||
return r; | ||
} | ||
@@ -58,12 +58,12 @@ acb_modular_epsilon_arg(const psl2z_t g) | ||
|
||
if (cc % 2 == 1) | ||
{ | ||
- u = fmpz_kronecker(a, c); | ||
+ u = fmpz_kronecker1(a, c); | ||
aa = aa*bb + 2*aa*cc - 3*cc + cc*dd*(1-aa*aa); | ||
} | ||
else | ||
{ | ||
- u = fmpz_kronecker(c, a); | ||
+ u = fmpz_kronecker1(c, a); | ||
aa = aa*bb - aa*cc + 3*aa - 3 + cc*dd*(1-aa*aa); | ||
} | ||
|
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=70b46d821bd601ddf3e6b6d6bfcfb288d81018d1 | ||
md5=5d83741b640f1862df88c4d12bdc7220 | ||
cksum=150019468 | ||
sha1=c55867da552d5ed30328a35a480dc1ab14ec232c | ||
md5=5cbace690cae40b89993e3a71fe4200c | ||
cksum=912186647 |
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 @@ | ||
5e648d88fead1ead94ca608e60c49c156e2291aa | ||
25ff4f4daf3cd93053f7b8c1e39117ce67e96b6c |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
tarball=deformation-VERSION.tar.bz2 | ||
sha1=317fb76c884fa4b6b92ed0b171a0b9fdb3bdc90f | ||
md5=e4af9b93ddc85ebb52d9fa1fedd75887 | ||
cksum=4134074975 | ||
sha1=0f5fd78a91da207d06b5be59bf466f16c2614eda | ||
md5=e2c365e20778117d402fb664fc145d72 | ||
cksum=3789646827 | ||
upstream_url=https://github.com/sagemath/deformation/archive/refs/tags/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 @@ | ||
d05941b.p0 | ||
20210503 |
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
Empty file.
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,22 @@ | ||
llvm: The LLVM Compiler Infrastructure, including the Clang C/C++/Objective-C compiler | ||
====================================================================================== | ||
|
||
Description | ||
----------- | ||
|
||
The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. | ||
|
||
Clang is an "LLVM native" C/C++/Objective-C compiler. | ||
|
||
The libc++ and libc++ ABI projects provide a standard conformant and high-performance | ||
implementation of the C++ Standard Library, including full support for C++11 and C++14. | ||
|
||
License | ||
------- | ||
|
||
Apache 2.0 License with LLVM exceptions | ||
|
||
Upstream Contact | ||
---------------- | ||
|
||
https://llvm.org/ |
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 @@ | ||
clang |
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 @@ | ||
clang |
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 @@ | ||
clang |
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 @@ | ||
llvm-toolchain |
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 @@ | ||
clang |
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 @@ | ||
devel/llvm |
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 @@ | ||
sys-devel/clang |
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 @@ | ||
llvm |
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 @@ | ||
clang |
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 @@ | ||
clang |
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 @@ | ||
devel/llvm |
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 @@ | ||
llvm |
Oops, something went wrong.