-
Notifications
You must be signed in to change notification settings - Fork 4
/
site.yml
1175 lines (1159 loc) · 46.7 KB
/
site.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
- name: MatrixCategories
hosts: MatrixCategories
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: MatrixCategories
description: "Categories of finite dimensional matrices over rings"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
- name: HeckeCategories
hosts: HeckeCategories
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: HeckeCategories
description: "Categorification of Hecke algebras"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CAP_project
- CategoricalTowers
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
- name: CategoricalTowers
hosts: CategoricalTowers
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/meta_package.yml
vars:
meta_package:
name: CategoricalTowers
description: Towers of category constructors
subpackages:
- name: Algebroids
description: "Algebroids and bialgebroids as preadditive categories generated by enhanced quivers"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
\usepackage{tikz-cd}
\DeclareUnicodeCharacter{2205}{\ensuremath{\emptyset}}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
\DeclareUnicodeCharacter{2192}{\ensuremath{\!\!\rightarrow\!}}
\DeclareUnicodeCharacter{21AA}{\ensuremath{\!\!\hookrightarrow\!}}
\DeclareUnicodeCharacter{21A0}{\ensuremath{\!\!\twoheadrightarrow\!}}
\DeclareUnicodeCharacter{2B47}{\ensuremath{\!\!\xrightarrow{\sim}\!}}
\DeclareUnicodeCharacter{227B}{\ensuremath{\succ}}
\DeclareUnicodeCharacter{22C5}{\ensuremath{\cdot}}
\DeclareUnicodeCharacter{2297}{\ensuremath{\otimes}}
needed_other_repositories:
- homalg_project
- CAP_project
- HigherHomologicalAlgebra
- QPA2
- FinSetsForCAP
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
tests_without_precompiled_code: true
has_subsplit: true
- name: CategoriesWithAmbientObjects
description: "Categories with objects having ambient objects"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- ModulePresentationsForCAP
- HomologicalAlgebraForCAP
- RingsForHomalg
- IO_ForHomalg
tests_only_basic: true
has_subsplit: true
- name: CatReps
description: "Representations and cohomology of finite categories"
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CAP_project
- HigherHomologicalAlgebra
- QPA2
- FinSetsForCAP
tests_additional_packages_to_load:
- ToolsForCategoricalTowers ## load before FinSetsForCAP
- FinSetsForCAP ## load before FreydCategoriesForCAP
- FreydCategoriesForCAP
tests_only_basic: true
has_subsplit: true
- name: ExteriorPowersCategories
description: "The graded category of exterior powers of objects of a given Ab-category"
has_HOMALG_IO: true
needed_other_repositories:
- homalg_project
- CAP_project
tests_only_basic: true
has_subsplit: true
- name: FiniteCocompletions
description: Finite (co)product/(co)limit (co)completions
doc_additional_latex_preamble: |
\usepackage{mathtools}
\DeclareUnicodeCharacter{2205}{\ensuremath{\emptyset}}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
\DeclareUnicodeCharacter{2192}{\ensuremath{\!\!\rightarrow\!}}
\DeclareUnicodeCharacter{21AA}{\ensuremath{\!\!\hookrightarrow\!}}
\DeclareUnicodeCharacter{21A0}{\ensuremath{\!\!\twoheadrightarrow\!}}
\DeclareUnicodeCharacter{2B47}{\ensuremath{\!\!\xrightarrow{\sim}\!}}
\DeclareUnicodeCharacter{21A6}{\ensuremath{\mapsto}}
\DeclareUnicodeCharacter{227B}{\ensuremath{\succ}}
\DeclareUnicodeCharacter{22C5}{\ensuremath{\cdot}}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- Digraphs
- ToolsForCategoricalTowers ## load before FinSetsForCAP
- FinSetsForCAP ## load before FreydCategoriesForCAP
- FreydCategoriesForCAP
- FunctorCategories
- LazyCategories
tests_only_basic: true
tests_without_precompiled_code: true
has_subsplit: true
- name: FpCategories
description: "Finitely presented categories by generating quivers and relations"
doc_additional_latex_preamble: |
\usepackage{mathtools}
\usepackage{tikz-cd}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
\DeclareUnicodeCharacter{2192}{\ensuremath{\!\!\rightarrow\!}}
\DeclareUnicodeCharacter{21AA}{\ensuremath{\!\!\hookrightarrow\!}}
\DeclareUnicodeCharacter{21A0}{\ensuremath{\!\!\twoheadrightarrow\!}}
\DeclareUnicodeCharacter{2B47}{\ensuremath{\!\!\xrightarrow{\sim}\!}}
\DeclareUnicodeCharacter{227B}{\ensuremath{\succ}}
\DeclareUnicodeCharacter{22C5}{\ensuremath{\cdot}}
needed_other_repositories:
- homalg_project
- CAP_project
- HigherHomologicalAlgebra
- QPA2
- FinSetsForCAP
tests_additional_packages_to_load:
- Digraphs
tests_only_basic: true
tests_without_precompiled_code: true
has_subsplit: true
- name: FunctorCategories
description: "Categories of functors"
has_HOMALG_IO: true
needed_other_repositories:
- homalg_project
- CAP_project
- HigherHomologicalAlgebra
- QPA2
- FinSetsForCAP
doc_additional_latex_preamble: |
\usepackage{mathtools}
\DeclareUnicodeCharacter{2205}{\ensuremath{\emptyset}}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
\DeclareUnicodeCharacter{2192}{\ensuremath{\!\!\rightarrow\!}}
\DeclareUnicodeCharacter{21AA}{\ensuremath{\!\!\hookrightarrow\!}}
\DeclareUnicodeCharacter{21A0}{\ensuremath{\!\!\twoheadrightarrow\!}}
\DeclareUnicodeCharacter{2B47}{\ensuremath{\!\!\xrightarrow{\sim}\!}}
\DeclareUnicodeCharacter{21A6}{\ensuremath{\mapsto}}
\DeclareUnicodeCharacter{227B}{\ensuremath{\succ}}
\DeclareUnicodeCharacter{22C5}{\ensuremath{\cdot}}
tests_additional_packages_to_load:
- Digraphs
- ToolsForCategoricalTowers ## load before FinSetsForCAP
- FinSetsForCAP ## load before FreydCategoriesForCAP
- Locales
- FreydCategoriesForCAP
- IO_ForHomalg
tests_only_basic: true
has_subsplit: true
- name: GradedCategories
description: "Graded closures of categories"
has_HOMALG_IO: true
needed_other_repositories:
- homalg_project
- CAP_project
has_subsplit: true
- name: InternalModules
description: "Modules over internal algebras"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{bbm}
\DeclareUnicodeCharacter{1D7D9}{\ensuremath{\mathbbm{1}}}
\DeclareUnicodeCharacter{03C3}{\ensuremath{\sigma}}
\DeclareUnicodeCharacter{03C1}{\ensuremath{\rho}}
\DeclareUnicodeCharacter{03BD}{\ensuremath{\nu}}
\DeclareUnicodeCharacter{03C7}{\ensuremath{\chi}}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
has_subsplit: true
- name: IntrinsicCategories
description: "Intrinsic categories for CAP"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- ModulePresentationsForCAP
- HomologicalAlgebraForCAP
- RingsForHomalg
- IO_ForHomalg
tests_only_basic: true
has_subsplit: true
- name: IntrinsicGradedModules
description: "Finitely presented graded modules over computable graded rings allowing multiple presentations and the notion of elements"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- RingsForHomalg
- IO_ForHomalg
tests_only_basic: true
has_subsplit: true
- name: IntrinsicModules
description: "Finitely presented modules over computable rings allowing multiple presentations and the notion of elements"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- RingsForHomalg
- IO_ForHomalg
tests_only_basic: true
has_subsplit: true
- name: LazyCategories
description: "Construct an equivalent lazy category out of a CAP category"
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- LinearAlgebraForCAP
- GeneralizedMorphismsForCAP
- Algebroids
- GRAPE
- Locales
- SubcategoriesForCAP
tests_only_basic: true
has_subsplit: true
- name: Locales
description: "Locales, frames, coframes, meet semi-lattices of locally closed subsets, and Boolean algebras of constructible sets"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
\DeclareUnicodeCharacter{22A4}{\ensuremath{\top}}
\DeclareUnicodeCharacter{22A5}{\ensuremath{\bot}}
\DeclareUnicodeCharacter{21D2}{\ensuremath{\Rightarrow}}
\DeclareUnicodeCharacter{227B}{\ensuremath{\succ}}
\DeclareUnicodeCharacter{22C5}{\ensuremath{\cdot}}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- IO_ForHomalg
- Digraphs
- FinSetsForCAP
- FreydCategoriesForCAP
- SubcategoriesForCAP
- FunctorCategories
- LazyCategories
tests_only_basic: true
tests_without_precompiled_code: true
has_subsplit: true
- name: PreSheaves
description: Categories of (co)presheaves
doc_additional_latex_preamble: |
\usepackage{mathtools}
\DeclareUnicodeCharacter{2205}{\ensuremath{\emptyset}}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
\DeclareUnicodeCharacter{2192}{\ensuremath{\!\!\rightarrow\!}}
\DeclareUnicodeCharacter{21AA}{\ensuremath{\!\!\hookrightarrow\!}}
\DeclareUnicodeCharacter{21A0}{\ensuremath{\!\!\twoheadrightarrow\!}}
\DeclareUnicodeCharacter{2B47}{\ensuremath{\!\!\xrightarrow{\sim}\!}}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- FinSetsForCAP
tests_only_basic: true
has_subsplit: true
- name: QuotientCategories
description: Quotient categories
tests_additional_packages_to_load:
- ModulePresentations
tests_only_basic: true
has_subsplit: true
- name: SubcategoriesForCAP
description: "Subcategory and other related constructors for CAP categories"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
\DeclareUnicodeCharacter{2205}{\ensuremath{\emptyset}}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
\DeclareUnicodeCharacter{2192}{\ensuremath{\!\!\rightarrow\!}}
\DeclareUnicodeCharacter{21AA}{\ensuremath{\!\!\hookrightarrow\!}}
\DeclareUnicodeCharacter{21A0}{\ensuremath{\!\!\twoheadrightarrow\!}}
\DeclareUnicodeCharacter{2B47}{\ensuremath{\!\!\xrightarrow{\sim}\!}}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- IO_ForHomalg
- FreydCategoriesForCAP
- FinSetsForCAP
- Locales
tests_only_basic: true
tests_without_precompiled_code: true
has_subsplit: true
- name: ToolsForCategoricalTowers
description: "Tools for CategoricalTowers"
doc_additional_latex_preamble: |
\usepackage{mathtools}
\usepackage{tikz}
\usetikzlibrary{arrows}
\pgfarrowsdeclarecombine{twohead}{twohead}{latex}{latex}{latex}{latex}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- Digraphs
- Locales
- FinSetsForCAP
- SubcategoriesForCAP
- FreydCategoriesForCAP
tests_only_basic: true
has_subsplit: true
- name: Toposes
description: "Elementary toposes"
doc_additional_latex_preamble: |
\usepackage{mathtools}
\DeclareUnicodeCharacter{2205}{\ensuremath{\emptyset}}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
\DeclareUnicodeCharacter{2192}{\ensuremath{\!\!\rightarrow\!}}
\DeclareUnicodeCharacter{21AA}{\ensuremath{\!\!\hookrightarrow\!}}
\DeclareUnicodeCharacter{21A0}{\ensuremath{\!\!\twoheadrightarrow\!}}
\DeclareUnicodeCharacter{2B47}{\ensuremath{\!\!\xrightarrow{\sim}\!}}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- ToolsForCategoricalTowers
- LazyCategories
tests_only_basic: true
has_subsplit: true
- name: ZariskiFrames
description: "(Co)frames/Locales of Zariski closed/open subsets of affine, projective, or toric varieties"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
\DeclareUnicodeCharacter{2205}{\O}
\DeclareUnicodeCharacter{222A}{\ensuremath{\cup}}
\DeclareUnicodeCharacter{22C3}{\ensuremath{\bigcup}}
\DeclareUnicodeCharacter{2229}{\ensuremath{\cap}}
needed_other_repositories:
- homalg_project
- CAP_project
tests_additional_packages_to_load:
- IO_ForHomalg
- Digraphs
tests_only_basic: true
has_subsplit: true
ci_additional_repositories:
- ArangoDBInterface
- ParallelizedIterators
- alcove
- MatroidGeneration
ci_additional_packages_to_test:
- MatroidGeneration
- name: FinSetsForCAP
hosts: FinSetsForCAP
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: FinSetsForCAP
description: "The elementary topos of (skeletal) finite sets"
doc_additional_latex_preamble: |
\usepackage{mathtools}
\DeclareUnicodeCharacter{2205}{\ensuremath{\emptyset}}
\DeclareUnicodeCharacter{2C76}{\ensuremath{\vdash}\!\!}
\DeclareUnicodeCharacter{2192}{\ensuremath{\!\!\rightarrow\!}}
\DeclareUnicodeCharacter{21AA}{\ensuremath{\!\!\hookrightarrow\!}}
\DeclareUnicodeCharacter{21A0}{\ensuremath{\!\!\twoheadrightarrow\!}}
\DeclareUnicodeCharacter{2B47}{\ensuremath{\!\!\xrightarrow{\sim}\!}}
needed_other_repositories:
- homalg_project
- CAP_project
- Toposes
tests_without_precompiled_code: true
- name: FinGSetsForCAP
hosts: FinGSetsForCAP
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: FinGSetsForCAP
description: "The elementary topos of (skeletal) finite G-sets"
doc_additional_latex_preamble: |
\usepackage[T1]{fontenc}
\usepackage[british]{babel}
\usepackage{microtype}
\usepackage{amsmath}
\usepackage{calc}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage[dvipsnames]{xcolor}
\usepackage{hyperref}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\usepackage{cite}
\usepackage{url}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,matrix}
\usepackage{tikz-cd}
\usepackage{makeidx}
\usepackage{listings}
\usepackage[scaled]{beramono}
\usepackage[figure]{hypcap}
\renewcommand{\hypcapspace}{2\baselineskip}
\usepackage{mathtools}
\usepackage{faktor}
\DeclareMathOperator{\Stab}{Stab}
\DeclareMathOperator{\fix}{fix}
\DeclareMathOperator{\coeq}{coeq}
\DeclareMathOperator{\im}{im}
\DeclareMathOperator{\rank}{rank}
\DeclareMathOperator{\CartProdExt}{CartProdExt}
\DeclareMathOperator{\End}{End}
\DeclareMathOperator{\Hom}{Hom}
\DeclareMathOperator{\op}{op}
\DeclareMathOperator{\id}{id}
\DeclareMathOperator{\Obj}{Obj}
\usepackage{ifthen}
% use \ell instead of l everywhere
\mathcode`l="8000
\begingroup
\makeatletter
\lccode`\~=`\l
\DeclareMathSymbol{\lsb@l}{\mathalpha}{letters}{`l}
\lowercase{\gdef~{\ifnum\the\mathgroup=\m@ne \ell \else \lsb@l \fi}}%
\endgroup
tests_additional_packages_to_load:
- FinSetsForCAP
needed_other_repositories:
- homalg_project
- CAP_project
- Toposes
- FinSetsForCAP
- name: ZXCalculusForCAP
hosts: ZXCalculusForCAP
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: ZXCalculusForCAP
description: "The category of ZX-diagrams"
doc_additional_latex_preamble: |
% this is the only way to suppress an overfull hbox in the signature of CategoryOfZXDiagrams_as_CategoryOfCospans_CategoryOfDecoratedQuivers
\geometry{left=26mm,right=26mm}
tests_additional_packages_to_load:
- Toposes
- FreydCategoriesForCAP
- FunctorCategories
- json
needed_other_repositories:
- homalg_project
- CAP_project
- FinSetsForCAP
- HigherHomologicalAlgebra
- QPA2
- CategoricalTowers
tests_without_precompiled_code: true
- name: HigherHomologicalAlgebra
hosts: HigherHomologicalAlgebra
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/meta_package.yml
vars:
meta_package:
name: HigherHomologicalAlgebra
description: Higher Homological Algebra
subpackages:
- name: Bicomplexes
description: Bicomplexes for Abelian categories
doc_additional_latex_preamble: |
\usepackage{amsmath}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,matrix}
tests_additional_packages_to_load:
- FinSetsForCAP
- FreydCategoriesForCAP
- ModulePresentationsForCAP
- Algebroids
tests_only_basic: true
- name: ComplexesCategories
description: Category of (co)chain complexes of an additive category
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{amsmath}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,matrix}
tests_additional_packages_to_load:
- IO_ForHomalg
- FinSetsForCAP
- FreydCategoriesForCAP
- Algebroids
tests_only_basic: true
- name: DerivedCategories
description: Derived categories of Abelian categories
has_HOMALG_IO: true
tests_only_basic: true
tests_additional_packages_to_load:
- IO_ForHomalg
- FinSetsForCAP
- FreydCategoriesForCAP
- Algebroids
- FunctorCategories
- SubcategoriesForCAP
- name: HomotopyCategories
description: Homotopy categories of additive categories
doc_additional_latex_preamble: |
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,matrix}
tests_additional_packages_to_load:
- IO_ForHomalg
- FinSetsForCAP
- FreydCategoriesForCAP
- Algebroids
tests_only_basic: true
- name: StableCategories
description: Stable categories of additive categories
doc_additional_latex_preamble: |
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{amssymb}
\usepackage{cite}
\usepackage{mathrsfs}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{faktor}
\usepackage{tikz-cd}
\newcommand{\comp}[2]{ #1 \cdot #2 }
\newcommand{\CC}{\mathscr{C}}
\newcommand{\EE}{\mathcal{E}}
\newcommand{\QQ}{\mathcal{Q}}
\newcommand{\LL}{\mathcal{L}}
\newcommand{\id}{\mathrm{id}}
\newcommand{\Ch}[1]{\mathrm{Ch}^b(#1)}
\newcommand{\Ho}[1]{\mathrm{K}^b(#1)}
has_HOMALG_IO: false
tests_only_basic: true
- name: ToolsForHigherHomologicalAlgebra
description: Tools for the Higher Homological Algebra project
tests_additional_packages_to_load:
- FinSetsForCAP
- FreydCategoriesForCAP
tests_only_basic: true
- name: TriangulatedCategories
description: Framework for triangulated categories
doc_additional_latex_preamble: |
\usepackage{amsmath}
\usepackage[T1]{fontenc}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,matrix}
\usepackage{tikz-cd}
tests_additional_packages_to_load:
- DerivedCategories
tests_only_basic: true
ci_additional_repositories:
- homalg_project
- CAP_project
- Toposes
- FinSetsForCAP
- QPA2
- FpCategories
- Algebroids
- PreSheaves
- QuotientCategories
- FiniteCocompletions
- FunctorCategories
- SubcategoriesForCAP
- ToolsForCategoricalTowers
- Locales
- name: CAP_project
hosts: CAP_project
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/meta_package.yml
vars:
meta_package:
name: CAP_project
description: Categories, Algorithms, and Programming
subpackages:
- name: CAP
description: Categories, Algorithms, Programming
doc_additional_latex_preamble: |
\usepackage{tikz}
\usetikzlibrary{arrows}
\pgfarrowsdeclarecombine{twohead}{twohead}{latex}{latex}{latex}{latex}
tests_additional_packages_to_load:
- ModulePresentationsForCAP
tests_only_basic: true
- name: ActionsForCAP
description: Actions and Coactions for CAP
tests_only_basic: true
- name: AttributeCategoryForCAP
description: Automatic enhancement with attributes of a CAP category
tests_only_basic: true
- name: CartesianCategories
description: "Cartesian and cocartesian categories and various subdoctrines"
tests_only_basic: true
- name: CompilerForCAP
description: Speed up and verify categorical algorithms
has_HOMALG_IO: true
doc_additional_latex_preamble: |
% this is the only way to suppress an overfull hbox in the signature of CapJitIterateOverTree
\geometry{left=26mm,right=26mm}
tests_additional_packages_to_load:
- IO_ForHomalg
- FreydCategoriesForCAP
- LinearAlgebraForCAP
- RingsForHomalg
- name: ComplexesAndFilteredObjectsForCAP
description: Implementation of complexes, cocomplexes and filtered objects for CAP
tests_only_basic: true
- name: FreydCategoriesForCAP
description: Freyd categories - Formal (co)kernels for additive categories
has_HOMALG_IO: true
doc_additional_scan_dirs:
- gap/CategoryOfGradedRowsAndColumns
- gap/GradedModulePresentationsByFreyd
doc_additional_latex_preamble: |
\usepackage{tikz}
\usetikzlibrary{arrows}
\usetikzlibrary{calc}
tests_additional_packages_to_load:
- IO_ForHomalg
- RingsForHomalg
- GaussForHomalg
- GeneralizedMorphismsForCAP
tests_only_basic: true
has_subsplit: true
- name: GeneralizedMorphismsForCAP
description: Implementations of generalized morphisms for the CAP project
tests_additional_packages_to_load:
- LinearAlgebraForCAP
tests_only_basic: true
- name: GradedModulePresentationsForCAP
description: Presentations for graded modules
has_HOMALG_IO: true
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
- name: GroupRepresentationsForCAP
description: Skeletal category of group representations for CAP
has_HOMALG_IO: true
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
- name: HomologicalAlgebraForCAP
description: Homological algebra algorithms for CAP
has_HOMALG_IO: true
tests_additional_packages_to_load:
- IO_ForHomalg
- RingsForHomalg
- GaussForHomalg
- ModulePresentationsForCAP
tests_only_basic: true
- name: InternalExteriorAlgebraForCAP
description: Constructions for Modules over the Internal Exterior Algebra for CAP
has_HOMALG_IO: true
tests_additional_packages_to_load:
- IO_ForHomalg
- HomologicalAlgebraForCAP
tests_only_basic: true
- name: LinearAlgebraForCAP
description: Category of Matrices over a Field for CAP
tests_only_basic: true
tests_without_precompiled_code: true
- name: ModulePresentationsForCAP
description: Category R-pres for CAP
has_HOMALG_IO: true
tests_additional_packages_to_load:
- IO_ForHomalg
- RingsForHomalg
- GaussForHomalg
tests_only_basic: true
- name: ModulesOverLocalRingsForCAP
description: Category of modules over a local ring modeled by Serre quotients for CAP
has_HOMALG_IO: true
tests_additional_packages_to_load:
- IO_ForHomalg
- RingsForHomalg
tests_only_basic: true
- name: MonoidalCategories
description: Monoidal and monoidal (co)closed categories
doc_additional_latex_preamble: |
\usepackage{mathtools}
tests_additional_packages_to_load:
- MatricesForHomalg
- GaussForHomalg
tests_only_basic: true
- name: ToricSheaves
description: Toric sheaves as Serre quotients
tests_additional_packages_to_load:
- ToricVarieties
tests_only_basic: true
ci_additional_repositories:
- homalg_project
- name: ArangoDBInterface
hosts: ArangoDBInterface
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: ArangoDBInterface
description: "A GAP interface to ArangoDB"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
ci_do_not_run_tests: true
- name: ParallelizedIterators
hosts: ParallelizedIterators
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: ParallelizedIterators
description: "Parallely evaluate recursive iterators"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
ci_do_not_run_tests: true
- name: MatroidGeneration
hosts: MatroidGeneration
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: MatroidGeneration
description: "Generate low-rank matroids"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- ArangoDBInterface
- ParallelizedIterators
- alcove
tests_additional_packages_to_load:
- Digraphs
- ZariskiFrames
- IO_ForHomalg
tests_only_basic: true
ci_additional_repositories:
- CAP_project
- Toposes
- ToolsForCategoricalTowers
- QuotientCategories
- FinSetsForCAP
- FpCategories
- Locales
- ZariskiFrames
- name: LoopIntegrals
hosts: LoopIntegrals
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: LoopIntegrals
description: "Compute master integrals using commutative and noncommutative methods from computational algebraic geometry"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
- name: PrimaryDecomposition
hosts: PrimaryDecomposition
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: PrimaryDecomposition
description: "Tools for primary decomposition"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
- name: LessGenerators
hosts: LessGenerators
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: LessGenerators
description: "Find smaller generating sets for modules"
has_HOMALG_IO: true
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
tests_additional_packages_to_load:
- IO_ForHomalg
tests_only_basic: true
- name: NConvex
hosts: NConvex
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/package.yml
vars:
package:
name: NConvex
description: "A Gap package to perform polyhedral computations"
has_HOMALG_IO: false
doc_additional_latex_preamble: |
\usepackage{mathtools}
needed_other_repositories:
- homalg_project
- CddInterface
- NormalizInterface
tests_only_basic: true
- name: homalg_project
hosts: homalg_project
connection: local
vars:
pkg_dir: "~/.gap/pkg/"
tasks:
- import_tasks: tasks/meta_package.yml
vars:
meta_package:
name: homalg_project
description: The packages of the homalg project
subpackages:
- name: homalg
description: A homological algebra meta-package for computable Abelian categories
GAPDoc_docu: true
tests_only_basic: true
tests_additional_packages_to_load:
- MatricesForHomalg
- Modules
- name: 4ti2Interface
description: A link to 4ti2
tests_only_basic: true
- name: ExamplesForHomalg
description: Examples for the GAP Package homalg
GAPDoc_docu: true
has_HOMALG_IO: true
tests_only_basic: true
tests_additional_packages_to_load:
- IO_ForHomalg
- name: Gauss
description: Extended Gauss functionality for GAP
GAPDoc_docu: true
tests_only_basic: true
- name: GaussForHomalg
description: Gauss functionality for the homalg project
GAPDoc_docu: true
tests_only_basic: true
tests_additional_packages_to_load:
- homalg
- Modules
- name: GradedModules
description: A homalg based package for the Abelian category of finitely presented graded modules over computable graded rings
GAPDoc_docu: true
has_HOMALG_IO: true
tests_only_basic: true
tests_additional_packages_to_load:
- IO_ForHomalg
- name: GradedRingForHomalg
description: Endow Commutative Rings with an Abelian Grading
GAPDoc_docu: true
has_HOMALG_IO: true
tests_only_basic: true
tests_additional_packages_to_load:
- IO_ForHomalg
- name: HomalgToCAS
description: A window to the outer world
GAPDoc_docu: true
tests_only_basic: true
- name: IO_ForHomalg
description: IO capabilities for the homalg project
GAPDoc_docu: true
tests_only_basic: true
- name: LocalizeRingForHomalg
description: A Package for Localization of Polynomial Rings
GAPDoc_docu: true
has_HOMALG_IO: true
tests_only_basic: true
tests_additional_packages_to_load:
- RingsForHomalg
- IO_ForHomalg
- name: MatricesForHomalg
description: Matrices for the homalg project