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 '6.6.beta5' into rings/complex_interval_acb
Sage version 6.6.beta5
- Loading branch information
Showing
1,066 changed files
with
50,690 additions
and
23,696 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 |
---|---|---|
|
@@ -29,7 +29,9 @@ | |
.\#* | ||
|
||
# Vim | ||
*.s[a-w][a-z] | ||
*.swp | ||
*.swo | ||
*.swn | ||
*.un~ | ||
.netrwhist | ||
|
||
|
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 @@ | ||
Sage version 6.5.beta6, released 2015-01-24 | ||
Sage version 6.6.beta5, released 2015-03-13 |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Patch tests of arb-2.5 to be compatible with flint-2.4.4 | ||
|
||
Arb's testsuite, src/acb_modular/test/t-epsilon_arg.c, calls | ||
fmpq_dedekind_sum. However, this function does not exist in | ||
flint-2.4.4. | ||
|
||
fmpq_dedekind_sum was introduced in | ||
https://github.com/wbhart/flint2/commit/64f656fb8db591ea11db606c7905de9f47b05e84 | ||
and arith_dedekind_sum is now an alias to fmpq_dedekind_sum. | ||
|
||
So I patch src/acb_modular/test/t-epsilon_arg.c to call | ||
arith_dedekind_sum instead of fmpq_dedekind_sum. | ||
|
||
See also http://trac.sagemath.org/ticket/17688#comment:8 . | ||
|
||
diff -r -u src/acb_modular/test/t-epsilon_arg.c new/acb_modular/test/t-epsilon_arg.c | ||
--- src/acb_modular/test/t-epsilon_arg.c 2015-01-28 19:20:07.000000000 +0200 | ||
+++ new/acb_modular/test/t-epsilon_arg.c 2015-02-11 14:07:30.947675579 +0200 | ||
@@ -49,7 +49,7 @@ | ||
fmpz_mul_ui(fmpq_denref(arg), c, 12); | ||
fmpq_canonicalise(arg); | ||
|
||
- fmpq_dedekind_sum(t, d, c); | ||
+ arith_dedekind_sum(t, d, c); | ||
fmpq_sub(arg, arg, t); | ||
|
||
fmpq_clear(t); | ||
Only in new/acb_modular/test: t-epsilon_arg.c~ |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
= backports.ssl_match_hostname = | ||
|
||
== Description == | ||
|
||
This backport brings match_hostname() to users of | ||
Python 2.x | ||
|
||
== License == | ||
|
||
Python Software Foundation License | ||
|
||
== Upstream Contact == | ||
|
||
Home page: https://pypi.python.org/pypi/backports.ssl_match_hostname | ||
|
||
== Dependencies == | ||
|
||
Python, Setuptools | ||
|
||
== Special Update/Build Instructions == | ||
|
||
* Unpack the tarball | ||
* rename backports.ssl_match_hostname -> backports_ssl_match_hostname | ||
* Tar as backports_ssl_match_hostname.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
tarball=backports_ssl_match_hostname-VERSION.tar.gz | ||
sha1=194503d8b47066c2ce8d23cab707d19d6ada2eb9 | ||
md5=5def436c23fa2bc09aedf221d61b7017 | ||
cksum=132706006 |
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 @@ | ||
3.4.0.2 |
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,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ -z "$SAGE_LOCAL" ]; then | ||
echo >&2 "SAGE_LOCAL undefined ... exiting" | ||
echo >&2 "Maybe run 'sage --sh'?" | ||
exit 1 | ||
fi | ||
|
||
cd src | ||
|
||
python setup.py install | ||
if [ $? -ne 0 ]; then | ||
echo "Error installing backports.ssl_match_hostname ... exiting" | ||
exit 1 | ||
fi |
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,18 @@ | ||
= Certifi = | ||
|
||
== Description == | ||
|
||
Python package for providing Mozilla's CA Bundle. | ||
|
||
== License == | ||
|
||
ISC | ||
|
||
== Upstream Contact == | ||
|
||
Home page: https://pypi.python.org/pypi/certifi | ||
|
||
== Dependencies == | ||
|
||
Python, Setuptools | ||
|
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,4 @@ | ||
tarball=certifi-VERSION.tar.gz | ||
sha1=f53dc8f57aaf6d69c183ebadcec52ece0a55cc3f | ||
md5=315ea4e50673a16ab047099f816fd32a | ||
cksum=3559413705 |
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.05.14 |
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,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ -z "$SAGE_LOCAL" ]; then | ||
echo >&2 "SAGE_LOCAL undefined ... exiting" | ||
echo >&2 "Maybe run 'sage --sh'?" | ||
exit 1 | ||
fi | ||
|
||
cd src | ||
|
||
python setup.py install | ||
if [ $? -ne 0 ]; then | ||
echo "Error installing certifi ... exiting" | ||
exit 1 | ||
fi |
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=99eab7d6d7eabfb85e3efe2ce4b2096c836681ce | ||
md5=9823a583c3663035cdb47fdb6f334173 | ||
cksum=2606347674 | ||
sha1=12e8d35579711c8bf8beddb890aaebd6b2c51db1 | ||
md5=dbb592c16e66f4f2e3345071fb115abf | ||
cksum=693230472 |
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 @@ | ||
64 | ||
75 |
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=cython-VERSION.tar.gz | ||
sha1=02c6f25025923e5a5647e7876670a4cc7759371e | ||
md5=c59163d7c72c0a0ee5eb84edd17935ed | ||
cksum=3555036300 | ||
tarball=cython-VERSION.tar.bz2 | ||
sha1=89cf4f3d9a840e593da066a9f723b31a27d7c6a6 | ||
md5=6fe7c9d93970ce602d60defd903188d8 | ||
cksum=1851959595 |
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 @@ | ||
0.21.1 | ||
0.22 |
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=database_gap-VERSION.tar.bz2 | ||
sha1=0e81cd017dc0542fc5faf923324eb1fffb61cdeb | ||
md5=879fc85f53fa9ff9f12dc7ebd621a528 | ||
cksum=3437971482 | ||
sha1=14f99d80583928d373b053cb346d21effd17d53e | ||
md5=1fe8a7e5e0eddf8c7de46b1485fb491f | ||
cksum=2596097681 |
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 @@ | ||
4.7.5 | ||
4.7.7 |
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,12 @@ | ||
= Zeros of the Riemann zeta function = | ||
|
||
== Description == | ||
|
||
Table of zeros of the Riemann zeta function by Andrew Odlyzko. | ||
|
||
This package contains the file 'zeros6' with the first 2,001,052 zeros | ||
of the Riemann zeta function, accurate to within 4*10^(-9). | ||
|
||
== Dependencies == | ||
|
||
* Sage library |
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,4 @@ | ||
tarball=database_odlyzko_zeta-VERSION.tar.bz2 | ||
sha1=97f586307d2f67a0a8594bd010602e2c4d5e0b4d | ||
md5=c93f63760540d5a787728a7a89ca2d9c | ||
cksum=3293740202 |
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 @@ | ||
20061209 |
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,15 @@ | ||
#!/usr/bin/env python | ||
|
||
import os | ||
from sage.all import save | ||
from sage.env import SAGE_SHARE | ||
from sage.misc.misc import sage_makedirs | ||
|
||
install_root = os.path.join(SAGE_SHARE, 'odlyzko') | ||
target = os.path.join(install_root, 'zeros.sobj') | ||
|
||
if __name__ == '__main__': | ||
sage_makedirs(install_root) | ||
print("Creating Odlyzko database.") | ||
F = [float(x) for x in open("src/zeros6").readlines()] | ||
save(F, target) |
Oops, something went wrong.