Skip to content

Commit 3f08d03

Browse files
committed
Merge branch 'master' of https://github.com/jw-allen/sbstrips
2 parents e066083 + 8e887e5 commit 3f08d03

30 files changed

+856
-1432
lines changed

.gitignore

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
doc/*.aux
22
doc/*.bbl
33
doc/*.bib
4+
doc/*.blg
45
doc/*.brf
56
doc/*.css
67
doc/*.html
@@ -10,15 +11,18 @@ doc/*.ilg
1011
doc/*.ind
1112
doc/*.js
1213
doc/*.lab
13-
doc/*.tex
14+
doc/*.log
1415
doc/*.out
15-
doc/*.blg
16+
doc/*.pdf
1617
doc/*.pnr
1718
doc/*.six
18-
doc/*.txt
19-
doc/*.log
19+
doc/*.tex
2020
doc/*.toc
21+
doc/*.txt
22+
doc/*.xml
23+
24+
**.pdf
2125

2226
doc/main.pdf
2327

24-
dev/
28+
dev/

PackageInfo.g

+11-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SetPackageInfo( rec(
66

77
Version := "v0.6.0",
88

9-
Date := "05/11/2020",
9+
Date := "26/11/2020",
1010

1111
License := "GPL-2.0-or-later",
1212

@@ -18,7 +18,7 @@ SetPackageInfo( rec(
1818
IsMaintainer := true,
1919
Email := Concatenation( [
2020
"jo", "e.a", "llen", "@", "brist", "ol", ".", "ac", ".", "uk"
21-
]),
21+
] ),
2222
WWWHome := "https://research-information.bris.ac.uk/en/persons/joe-allen",
2323
PostalAddress := Concatenation( [
2424
"School of Mathematics,\n",
@@ -57,13 +57,15 @@ SetPackageInfo( rec(
5757
"https://github.com/jw-allen/sbstrips/blob/master/PackageInfo.g",
5858

5959
AbstractHTML :=
60-
"The <span class=\"pkgname\">SBstrips</span> package models 'strings' -- \
61-
the decorated graphs used in representation theory. These graphs are known \
62-
to describe a type of module for a special biserial algebra called a string \
63-
module. The syzygy of a string module is a direct sum of string modules; \
64-
hence syzygy-taking is essentially a one-to-many operation on strings. \
65-
<span class=\"pkgname\">SBstrips</span> package implements 'strings' as a \
66-
data structure called 'strips', and performs this syzygy calculation.",
60+
"String modules for special biserial (SB) algebras are represented by string\
61+
graphs. The syzygy of a string module (over an SB algebra) is a direct sum of\
62+
string modules, by a 2004 result of Liu and Morin, therefore syzygy-taking\
63+
can be performed at the (combinatorial) level of string graphs rather than\
64+
the (homological-algebraic) level of modules. This package represents string\
65+
graphs in <span class=\"pkgname\">GAP</span> by objects called strips and it\
66+
implements syzygy-taking as an operation on them. Together with some\
67+
utilities for book-keeping, it allows for very efficient calculation of Kth\
68+
syzygyies for large K.",
6769

6870
PackageDoc := rec(
6971
BookName := "SBStrips",

README

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
+--------------------------------------------------------+--------------------+
22
| | Copyright (C) 2020 |
3-
| SBStrips (v0.6.0) | Joe Allen |
3+
| SBStrips (v0.6.1) | Joe Allen |
44
| | [he/him/his] |
55
+--------------------------------------------------------+--------------------+
66

7-
This is the README file for SBStrips (v0.6.0), which is a package for GAP 4.11.
7+
This is the README file for SBStrips (v0.6.1), which is a package for GAP 4.11.
88

99
+--+ About +------------------------------------------------------------------+
1010
The SBStrips package models 'strings', namely the decorated graphs used in
@@ -15,7 +15,8 @@ one-to-many operation on strings. The SBStrips package implements 'strings' as
1515
a data structure called 'strips', and performs this syzygy calculation.
1616

1717
The SBStrips package is designed for version >=4.11.x of GAP, requiring version
18-
>=1.30.x of QPA. (QPA is another package for GAP.)
18+
>=1.30.x of QPA and version >=1.6.x of GAPDoc. (QPA and GAPDoc are other
19+
packages for GAP.)
1920

2021
The SBStrips package is being written by me, Joe Allen, during my doctoral
2122
studies at the University of Bristol. In my thesis, I am developing a
@@ -27,9 +28,9 @@ The SBStrips can be installed by following these steps (assuming you already
2728
have GAP installed.)
2829

2930
1. Download the archive file
30-
sbstrips/archive/v0.6.0.tar.gz
31+
sbstrips/archive/v0.6.1.tar.gz
3132
from
32-
https://github.com/jw-allen/sbstrips/archive/v0.6.0.tar.gz
33+
https://github.com/jw-allen/sbstrips/archive/v0.6.1.tar.gz
3334

3435
2. Unpack it into your pkg directory. It should create a subdirectory
3536
called sbstrips.
@@ -51,6 +52,9 @@ This version of SBStrips includes the following files
5152
PackageInfo.g
5253
Meta-information about this package
5354

55+
makedocrel.g
56+
Code to (re)generate the documentation
57+
5458
README
5559
This file!
5660

doc/ap_example_sbas.xml

-245
This file was deleted.

doc/ch_discrete_model.xml

-5
This file was deleted.

0 commit comments

Comments
 (0)