This repository was 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.
- Loading branch information
Showing
17 changed files
with
6,761 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
= Cubic Hecke Algebra Database = | ||
|
||
== Description == | ||
|
||
Iwan Marin's basis and matrix representations for the cubic Hecke algebra on 4 strands | ||
as given on 'http://www.lamfa.u-picardie.fr/marin/softs/H4 | ||
|
||
== Dependencies == | ||
|
||
* Sage library | ||
|
||
== Changelog == | ||
|
||
=== cubic_hecke_marin-20200513.tar.bz2 (Sebastian Oehms, 13 May 2020) === | ||
|
||
* #?????: Initial version | ||
|
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 @@ | ||
tarball=cubic_hecke_marin-20200513.tar.bz2 | ||
sha1=0afb0716b224b66fdd67b9b6e75b911030d15e1c | ||
md5=3ee0a0a4fc5a7739ad9932391d2d10b5 | ||
cksum=398008749 | ||
upstream_url=https://trac.sagemath.org/attachment/ticket/29717/cubic_hecke_marin-20200513.tar.bz2 |
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 @@ | ||
| $(SAGERUNTIME) | ||
|
||
---------- | ||
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 @@ | ||
20200513 |
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,21 @@ | ||
INSTALL="yes" | ||
TARGET="${SAGE_SHARE}/cubic_hecke_marin" | ||
VERSION=`cat package-version.txt` | ||
if [ -d $TARGET ] | ||
then | ||
diff package-version.txt $TARGET > /dev/null 2>&1 | ||
if [ $? -eq 0 ] | ||
then | ||
INSTALL="no" | ||
echo "Version $VERSION of cubic_hecke_marin already installed" | ||
else | ||
OLD_VERSION=`cat $TARGET/package-version.txt` | ||
echo "Removing former version $OLD_VERSION of cubic_hecke_marin" | ||
rm -rf $TARGET | ||
fi | ||
fi | ||
|
||
if [ "$INSTALL" = "yes" ] | ||
then | ||
exec sage-python23 spkg-install.py | ||
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,17 @@ | ||
import os | ||
from sage.all import save | ||
from sage.env import SAGE_SHARE | ||
from sage.misc.misc import sage_makedirs | ||
from sage.databases.cubic_hecke_db import CubicHeckeDataBase | ||
|
||
install_root = os.path.join(SAGE_SHARE, 'cubic_hecke_marin') | ||
|
||
if __name__ == '__main__': | ||
sage_makedirs(install_root) | ||
print("Creating Iwan Marin's Cubic Hecke database.") | ||
cha_db = CubicHeckeDataBase() | ||
cha_db.create_static_db_marin_basis() | ||
cha_db.create_static_db_marin_regular() | ||
cha_db.create_static_db_marin_regular(right=True) | ||
cha_db.create_static_db_marin_split() | ||
os.system('cp package-version.txt %s' %install_root) |
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 @@ | ||
standard |
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,10 @@ | ||
Cubic Hecke Algebras | ||
==================== | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
sage/algebras/hecke_algebras/cubic_hecke_algebra | ||
sage/algebras/hecke_algebras/base_rings_of_definition/cubic_hecke_base_ring | ||
sage/algebras/hecke_algebras/matrix_representations/cubic_hecke_matrix_rep | ||
|
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
Empty file.
Oops, something went wrong.