Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions FpCategories/.github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: TagBot
on:
issue_comment:
types:
- created
workflow_dispatch:
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
1 change: 1 addition & 0 deletions FpCategories/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.generate.sh
339 changes: 339 additions & 0 deletions FpCategories/LICENSE

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions FpCategories/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name = "FpCategories"
uuid = "b9f20f1b-1226-4811-b6a0-b2e47a225553"
authors = [
"Mohamed Barakat <mohamed.barakat@uni-siegen.de>",
"Kamal Saleh <kamal.saleh@uni-siegen.de>"
]

# Transpiled from GAP's FpCategories v2025.11-05
version = "0.0.1"

[deps]
CAP = "d64df2ee-d2bb-46f4-8cbc-f03bb858f8cb"
CartesianCategories = "c5961c08-7b59-43f4-a15e-02b3e7c87ab8"
ToolsForCategoricalTowers = "e2cf920d-0824-4cbb-97bb-0be40824f89f"
QuotientCategories = "c103c924-3523-4680-a691-c88f3312ec70"
FinSetsForCAP = "0a079e9b-4bc2-44fe-a89b-7607e4464786"

[weakdeps]

[extensions]

[compat]
julia = "1.11"
CAP = "0.6"
CartesianCategories = "~0.3.12"
ToolsForCategoricalTowers = "~0.0.1"
QuotientCategories = "~0.0.2"
FinSetsForCAP = "~0.1.15"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

[targets]
test = ["Test", "Documenter"]
23 changes: 23 additions & 0 deletions FpCategories/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- BEGIN HEADER -->
# FpCategories

### Finitely presented categories by generating quivers and relations

| Documentation |
| ------------- |
| [![HTML stable documentation][html-img]][html-url] [![PDF stable documentation][pdf-img]][pdf-url] |

<!-- END HEADER -->

This is the Julia version of the [CAP-based][CAP_based] package [FpCategories][FpCategories].

[CAP_based]: https://homalg-project.github.io/docs/CAP_project-based/
[FpCategories]: https://homalg-project.github.io/pkg/FpCategories

<!-- BEGIN FOOTER -->
[html-img]: https://img.shields.io/badge/🔗%20HTML-stable-blue.svg
[html-url]: https://homalg-project.github.io/CategoricalTowers/FpCategories/doc/chap0_mj.html

[pdf-img]: https://img.shields.io/badge/🔗%20PDF-stable-blue.svg
[pdf-url]: https://homalg-project.github.io/CategoricalTowers/FpCategories/download_pdf.html
<!-- END FOOTER -->
Loading