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/ticket/10963-doc-distributive
* develop: (155 commits) Updated Sage version to 6.2.beta6 32-bit fix typo fixing fix int/long doctest trac #16032: These matrices should be sparse trac 16032: This can be simplified... :-P Correct typo in sage/symbolic/ring.pyx. Put comment in the code and add more examples. trac #16032: reviewer's remarks FiniteStateMachine.__add__ is the same as __or__ trac #16032: Bug in IncidenceStructure.dual_design final edits more changes -- please check if I got your algorithm right, Travis Review changes from Ben. further optimizations Fixed KR doctest and documentation of q_dimension. Fixes for q-dims for general highest weight crystals. more optimizations Partial work for general HW crystals. Review changes and (minor) optimizations. ...
- Loading branch information
Showing
212 changed files
with
7,541 additions
and
1,569 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 @@ | ||
Sage version 6.2.beta5, released 2014-03-23 | ||
Sage version 6.2.beta6, released 2014-04-02 |
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=e4f7a8b1595adc80b90d3118c35d3f8568588b8e | ||
md5=fb4ca501460d44ab117694de80be374c | ||
cksum=474790094 | ||
sha1=0c309e33052d3847c89514d81742ecc7faaef1c3 | ||
md5=c4a51de241dc1092d8679b5b4dd5c3a6 | ||
cksum=1285854398 |
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 @@ | ||
18 | ||
19 |
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,34 @@ | ||
= CryptoMiniSat = | ||
|
||
== Description == | ||
|
||
CryptoMiniSat is a SAT solver that aims to become a premiere SAT | ||
solver with all the features and speed of successful SAT solvers, | ||
such as MiniSat and PrecoSat. The long-term goals of CryptoMiniSat | ||
are to be an efficient sequential, parallel and distributed | ||
solver. There are solvers that are good at one or the other, | ||
e.g. ManySat (parallel) or PSolver (distributed), but we wish to | ||
excel at all. | ||
|
||
CryptoMiniSat 2.5 won the SAT Race 2010 among 20 solvers submitted | ||
by researchers and industry. | ||
|
||
== License == | ||
|
||
* GNU General Public License Version 3 or later (see src/COPYING) | ||
|
||
== Maintainers == | ||
|
||
* Martin Albrecht | ||
|
||
== Upstream Contact == | ||
|
||
* Authors: Mate Soos | ||
* Email: soos.mate@gmail.com | ||
* Website: http://www.msoos.org/cryptominisat2 | ||
|
||
== Special Update/Build Instructions == | ||
|
||
CryptoMiniSat's tarball is called cmsat-VERSION.tar.gz and unpacks to | ||
cmsat-VERSION. It should be unpacked, renamed to cryptominisat-VERSION and | ||
repackaged. |
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=cryptominisat-VERSION.tar.gz | ||
sha1=3566754f4e1eb5aefec703f7806c74e4c3edda80 | ||
md5=6fdabd54dc9076e0e2f28f489f5eab64 | ||
cksum=2155609827 |
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 @@ | ||
2.9.6 |
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,76 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ "$SAGE_LOCAL" = "" ]; then | ||
echo "SAGE_LOCAL undefined ... exiting" | ||
echo "Maybe run 'sage -sh'?" | ||
exit 1 | ||
fi | ||
|
||
unset RM | ||
|
||
INCLUDES="-I$SAGE_LOCAL/include" | ||
LIBDIRS="-L$SAGE_LOCAL/lib" | ||
|
||
CXXFLAGS="$CXXFLAGS $INCLUDES $LIBDIRS -g" | ||
|
||
COMPILER=`testcc.sh $CC` | ||
|
||
if [ "x$COMPILER" = "xGNU" ] ; then | ||
CXXFLAGS="$CXXFLAGS -fPIC -Wall -pedantic" | ||
elif [ "x$COMPILER" = "xSun_on_Solaris" ] ; then | ||
CXXFLAGS="$CXXFLAGS -Kpic" | ||
elif [ "x$COMPILER" = "xHP_on_HPUX" ] ; then | ||
CXXFLAGS="$CXXFLAGS + z" | ||
fi | ||
|
||
CPPFLAGS="$INCLUDES" | ||
|
||
if [ "x$SAGE_DEBUG" = "xyes" ]; then | ||
CXXFLAGS="$CXXFLAGS -O0" | ||
ENABLE_DEBUG="--enable-debug" | ||
else | ||
CXXFLAGS="$CXXFLAGS -O2" | ||
ENABLE_DEBUG="" | ||
fi | ||
|
||
if [ "x$SAGE64" = "xyes" ]; then | ||
CXXFLAGS="$CXXFLAGS -m64" | ||
CPPFLAGS="$CPPFLAGS -m64" | ||
# FIXME: Do we need LDFLAGS here, too? | ||
# But looks as if all linking is performed by libtool/ | ||
# gcc, so we do not really need it here. | ||
fi | ||
|
||
export CXXFLAGS | ||
export CPPFLAGS | ||
|
||
|
||
#build CryptoMiniSat | ||
|
||
cd src | ||
|
||
$MAKE clean | ||
|
||
./configure --prefix=$SAGE_LOCAL $ENABLE_DEBUG | ||
|
||
if [ $? -ne 0 ]; then | ||
echo "Error configuring cryptominisat" | ||
exit 1 | ||
fi | ||
|
||
$MAKE | ||
|
||
if [ $? -ne 0 ]; then | ||
echo "Error building cryptominisat" | ||
exit 1 | ||
fi | ||
|
||
$MAKE install | ||
|
||
if [ $? -ne 0 ]; then | ||
echo "Error installing cryptominisat" | ||
exit 1 | ||
fi | ||
|
||
cd .. | ||
|
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.5.2.p0 | ||
2.5.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
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=pynac-VERSION.tar.bz2 | ||
sha1=9fe3137139ecc27d1d737d9208cb1e41ecbd2979 | ||
md5=1e1f8c545223871e5703ded52c62a723 | ||
cksum=1549561445 | ||
sha1=d7a80f5c96eec3ac9ecb6757d004e460fbfecece | ||
md5=70fae63e2c1cb4ec13eea24a4a780ba8 | ||
cksum=1408069708 |
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.3.1 | ||
0.3.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
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 @@ | ||
# Sage version information for shell scripts | ||
# This file is auto-generated by the sage-update-version script, do not edit! | ||
SAGE_VERSION='6.2.beta5' | ||
SAGE_RELEASE_DATE='2014-03-23' | ||
SAGE_VERSION='6.2.beta6' | ||
SAGE_RELEASE_DATE='2014-04-02' |
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.