Skip to content

Commit 99f4020

Browse files
committed
Transpile FpCategories v2025.09-03
Current Version to v0.0.1
1 parent 6f5f67b commit 99f4020

36 files changed

+8913
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JuliaRegistries/TagBot@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

FpCategories/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.generate.sh

FpCategories/LICENSE

Lines changed: 339 additions & 0 deletions
Large diffs are not rendered by default.

FpCategories/Project.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name = "FpCategories"
2+
uuid = "b9f20f1b-1226-4811-b6a0-b2e47a225553"
3+
authors = [
4+
"Mohamed Barakat <mohamed.barakat@uni-siegen.de>",
5+
"Kamal Saleh <kamal.saleh@uni-siegen.de>"
6+
]
7+
8+
# Transpiled from GAP's FpCategories v2025.09-03
9+
version = "0.0.1"
10+
11+
[deps]
12+
CAP = "d64df2ee-d2bb-46f4-8cbc-f03bb858f8cb"
13+
CartesianCategories = "c5961c08-7b59-43f4-a15e-02b3e7c87ab8"
14+
ToolsForCategoricalTowers = "e2cf920d-0824-4cbb-97bb-0be40824f89f"
15+
QuotientCategories = "c103c924-3523-4680-a691-c88f3312ec70"
16+
FinSetsForCAP = "0a079e9b-4bc2-44fe-a89b-7607e4464786"
17+
18+
[weakdeps]
19+
20+
[extensions]
21+
22+
[compat]
23+
julia = "1.11"
24+
CAP = "0.6"
25+
CartesianCategories = "~0.3.12"
26+
ToolsForCategoricalTowers = "~0.0.1"
27+
QuotientCategories = "~0.0.2"
28+
FinSetsForCAP = "~0.1.15"
29+
30+
[extras]
31+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
32+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33+
34+
[targets]
35+
test = ["Test", "Documenter"]

FpCategories/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!-- BEGIN HEADER -->
2+
# FpCategories
3+
4+
### Finitely presented categories by generating quivers and relations
5+
6+
| Documentation |
7+
| ------------- |
8+
| [![HTML stable documentation][html-img]][html-url] [![PDF stable documentation][pdf-img]][pdf-url] |
9+
10+
<!-- END HEADER -->
11+
12+
This is the Julia version of the [CAP-based][CAP_based] package [FpCategories][FpCategories].
13+
14+
[CAP_based]: https://homalg-project.github.io/docs/CAP_project-based/
15+
[FpCategories]: https://homalg-project.github.io/pkg/FpCategories
16+
17+
<!-- BEGIN FOOTER -->
18+
[html-img]: https://img.shields.io/badge/🔗%20HTML-stable-blue.svg
19+
[html-url]: https://homalg-project.github.io/CategoricalTowers/FpCategories/doc/chap0_mj.html
20+
21+
[pdf-img]: https://img.shields.io/badge/🔗%20PDF-stable-blue.svg
22+
[pdf-url]: https://homalg-project.github.io/CategoricalTowers/FpCategories/download_pdf.html
23+
<!-- END FOOTER -->

0 commit comments

Comments
 (0)