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 branch 'develop' into t/17659/17659
* develop: (217 commits) Updated Sage version to 6.5.beta6 trac #17649: Typo trac #16412: dangerous doctest Convert keys of generic sparse matrix to pair of ints. trac #12797: Review 17556: reviewer's patch: adapt text and test to changed behaviour trac #7738 removal of maintainer section trac #7738 last instance removal trac #14396: Review trac #17655: two difference sets trac #14396: Review trac #17649: split complicated lines trac #17649: formatting and documentation trac #17652: reviewer's comments trac #17652: product of difference matrices Fixed docs about xmin, xmax, ymin and ymax. trac #17649: GDD from TD trac #17649: Kirkman Triple Systems (end of the construction) Remove gcd, lcm, xgcd from element.pyx trac #12916 removed now longer used import of Set ... Conflicts: src/sage/symbolic/expression.pyx
- Loading branch information
Showing
176 changed files
with
7,174 additions
and
2,836 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Sage version 6.5.beta5, released 2015-01-05 | ||
Sage version 6.5.beta6, released 2015-01-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Let ATLAS use Cygwin thread functions on Cygwin64. | ||
diff -druN ATLAS.orig/src/threads/ATL_thread_start.c ATLAS.new/src/threads/ATL_thread_start.c | ||
--- ATLAS.orig/src/threads/ATL_thread_start.c 2014-07-10 09:22:06.000000000 -0700 | ||
+++ ATLAS.new/src/threads/ATL_thread_start.c 2014-11-18 07:17:39.207997205 -0800 | ||
@@ -14,14 +14,14 @@ | ||
*/ | ||
{ | ||
#ifdef ATL_WINTHREADS | ||
- #ifdef ATL_WIN32THREADS | ||
+ #if defined(ATL_WIN32THREADS) || defined(__CYGWIN__) | ||
DWORD thrID; | ||
#else | ||
unsigned thrID; | ||
#endif | ||
|
||
#ifdef ATL_NOAFFINITY | ||
- #ifdef ATL_WIN32THREADS | ||
+ #if defined(ATL_WIN32THREADS) || defined(__CYGWIN__) | ||
thr->thrH = CreateThread(NULL, 0, rout, arg, 0, &thrID); | ||
#else | ||
thr->thrH = (HANDLE)_beginthreadex(NULL, 0, rout, arg, 0, &thrID); | ||
@@ -29,7 +29,7 @@ | ||
ATL_assert(thr->thrH); | ||
#else | ||
thr->rank = proc; | ||
- #ifdef ATL_WIN32THREADS | ||
+ #if defined(ATL_WIN32THREADS) || defined(__CYGWIN__) | ||
thr->thrH = CreateThread(NULL, 0, rout, arg, CREATE_SUSPENDED, &thrID); | ||
#else | ||
thr->thrH = (HANDLE)_beginthreadex(NULL, 0, rout, arg, |
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,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=4f8f0920faf691bb4796376ae62ed8e984f4c9e1 | ||
md5=2d9f513e1daf47544d0030114076493b | ||
cksum=2159230018 | ||
sha1=99eab7d6d7eabfb85e3efe2ce4b2096c836681ce | ||
md5=9823a583c3663035cdb47fdb6f334173 | ||
cksum=2606347674 |
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 @@ | ||
63 | ||
64 |
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.