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 public/group_theory/improve_iterator_perm…
…_gps-25477
- Loading branch information
Showing
69 changed files
with
9,098 additions
and
1,837 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 +1 @@ | ||
SageMath version 8.4.beta6, Release Date: 2018-09-22 | ||
SageMath version 8.4.beta7, Release Date: 2018-09-30 |
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=00455e50894d088544c9b7e61e20c605696eea0c | ||
md5=f42fb78fd137874c567f182196dc45c2 | ||
cksum=3977387603 | ||
sha1=585003ab668b8afea5ae14b7fd3f71da3f8f043a | ||
md5=9058f4a34da70a5f5186b36c076d9a13 | ||
cksum=3490824772 |
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 @@ | ||
283 | ||
284 |
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,4 +1,4 @@ | ||
tarball=nose-VERSION.tar.bz2 | ||
sha1=b3177ffaa32eb169e1d775d02c8a361d0d76808e | ||
md5=aab52d77de9845d58ad717016f48668f | ||
cksum=2069758669 | ||
tarball=nose-VERSION.tar.gz | ||
sha1=97f2a04c9d43b29ddf4794a1a1d1ba803f1074c6 | ||
md5=4d3ad0ff07b61373d2cefc89c5d0b20b | ||
cksum=3318391794 |
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 @@ | ||
1.3.3.p0 | ||
1.3.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,28 @@ | ||
= pycosat = | ||
|
||
== Description == | ||
|
||
PicoSAT is a popular SAT solver written by Armin Biere in pure C. This package | ||
provides efficient Python bindings to picosat on the C level, i.e. when | ||
importing pycosat, the picosat solver becomes part of the Python process itself. | ||
For ease of deployment, the picosat source (namely picosat.c and picosat.h) is | ||
included in this project. These files have been extracted from the picosat | ||
source. | ||
|
||
== License == | ||
|
||
MIT | ||
|
||
== Upstream Contact == | ||
|
||
PicoSAT: http://fmv.jku.at/picosat/ | ||
pycosat: https://github.com/ContinuumIO/pycosat | ||
|
||
== Dependencies == | ||
|
||
None. | ||
|
||
== Special Update/Build Instructions == | ||
|
||
None. | ||
|
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=pycosat-VERSION.tar.gz | ||
sha1=1c2243fcc52491db8aa11558d4df626f28311757 | ||
md5=08e378db1c15dc1668bc62897bd325a5 | ||
cksum=2006887185 |
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,5 @@ | ||
$(PYTHON) | pip | ||
|
||
---------- | ||
All lines of this file are ignored except the first. | ||
It is copied by SAGE_ROOT/build/make/install into SAGE_ROOT/build/make/Makefile. |
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 @@ | ||
0.6.3 |
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 @@ | ||
if [ "$SAGE_LOCAL" = "" ]; then | ||
echo >&2 "Error: SAGE_LOCAL undefined - exiting..." | ||
echo >&2 "Maybe run 'sage -sh'?" | ||
exit 1 | ||
fi | ||
|
||
echo "Testing pycosat..." | ||
|
||
cd src | ||
python test_pycosat.py | ||
|
||
if [ $? -ne 0 ]; then | ||
echo >&2 "Error running self tests." | ||
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,15 @@ | ||
if [ "$SAGE_LOCAL" = "" ]; then | ||
echo "SAGE_LOCAL undefined ... exiting"; | ||
echo "Maybe run 'sage -sh'?" | ||
exit 1 | ||
fi | ||
|
||
cd src | ||
|
||
sdh_pip_install . | ||
|
||
if [ $? -ne 0 ]; then | ||
echo "Error installing pycosat ... 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 @@ | ||
optional |
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 @@ | ||
# Sage version information for shell scripts | ||
# This file is auto-generated by the sage-update-version script, do not edit! | ||
SAGE_VERSION='8.4.beta6' | ||
SAGE_RELEASE_DATE='2018-09-22' | ||
SAGE_VERSION_BANNER='SageMath version 8.4.beta6, Release Date: 2018-09-22' | ||
SAGE_VERSION='8.4.beta7' | ||
SAGE_RELEASE_DATE='2018-09-30' | ||
SAGE_VERSION_BANNER='SageMath version 8.4.beta7, Release Date: 2018-09-30' |
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.