Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…faces into cycles
  • Loading branch information
MeikeWeiss committed Sep 11, 2024
2 parents 067e949 + 5c07012 commit 4c228d1
Show file tree
Hide file tree
Showing 16 changed files with 1,266 additions and 25 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
matrix:
gap-branch:
- master
- stable-4.13
- stable-4.12
- stable-4.11

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: gap-actions/setup-gap@v2
with:
GAP_PKGS_TO_BUILD: "io profiling AttributeScheduler grape datastructures orb digraphs NautyTracesInterface"
Expand All @@ -38,8 +38,13 @@ jobs:
- uses: gap-actions/build-pkg@v1
- uses: gap-actions/build-pkg-docs@v1
- uses: gap-actions/run-pkg-tests@v2
- uses: gap-actions/run-pkg-tests@v2
with:
only-needed: true
- uses: gap-actions/process-coverage@v2
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

# The documentation job
manual:
Expand All @@ -49,7 +54,7 @@ jobs:
steps:
- run: sudo apt-get update
- run: sudo apt-get install sed texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-extra-utils texlive-fonts-recommended texlive-fonts-extra tex4ht
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: gap-actions/setup-gap@v2
with:
GAP_PKGS_TO_BUILD: "io profiling AttributeScheduler grape datastructures orb digraphs NautyTracesInterface"
Expand All @@ -60,7 +65,7 @@ jobs:
with:
use-latex: 'true'
- name: 'Upload documentation'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: manual
path: ./doc/manual.pdf
Expand Down
14 changes: 12 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@ Persons := [
PostalAddress := "--",
Place := "Aachen",
Institution := "Chair of Algebra and Representation Theory",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Lukas",
LastName := "Schnelle",
Email := "[email protected]",
PostalAddress := "--",
Place := "Aachen",
Institution := "Chair of Algebra and Representation Theory",
),
rec(
LastName := "GAP Team",
Expand Down Expand Up @@ -105,14 +115,14 @@ AbstractHTML := "The <span class='pkgname'>SimplicialSurfaces</span> package
PackageDoc := rec(
BookName := "SimplicialSurfaces",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Computation with simplicial surfaces and folding processes.",
),

Dependencies := rec(
GAP := ">= 4.11",
GAP := ">= 4.12",
NeededOtherPackages := [ [ "Grape", ">=4.8.2" ], [ "AttributeScheduler", ">=2018.08.03" ], ["Digraphs", ">=1.1.1"],[ "NautyTracesInterface", ">=0.2" ]],
SuggestedOtherPackages := [ [ "GAPDoc", ">= 1.6" ], ["AutoDoc", ">=2019.05.20"], [ "IO", ">=2.2" ]],
ExternalConditions := [ ],
Expand Down
Binary file not shown.
428 changes: 428 additions & 0 deletions doc/images/_Wrapper_Butterfly_Faithful_Monomorphism_Hexagon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4c228d1

Please sign in to comment.