-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrefs.bib
More file actions
1648 lines (1533 loc) · 138 KB
/
Copy pathrefs.bib
File metadata and controls
1648 lines (1533 loc) · 138 KB
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
@book{aguiarMonoidalFunctorsSpecies2010,
title = {Monoidal Functors, Species, and {{Hopf}} Algebras},
author = {Aguiar, Marcelo and Mahajan, Swapneel Arvind},
date = {2010},
series = {{{CRM}} Monograph Series / {{Centre}} de Recherches Mathématiques, {{Montréal}}},
number = {v. 29},
publisher = {American Mathematical Society},
location = {Providence, R.I},
url = {http://pi.math.cornell.edu/~maguiar/a.pdf},
isbn = {978-0-8218-4776-3},
pagetotal = {784},
keywords = {Categories (Mathematics),Combinatorial analysis,Hopf algebras,Quantum groups,Symmetry groups}
}
@article{arkorEnhanced2categoricalStructures,
title = {Enhanced 2-Categorical Structures},
author = {Arkor, Nathanael and Bourke, John and Ko, Joanna}
}
@article{bakovicFibrationsBicategories,
title = {Fibrations of Bicategories},
author = {Baković, Igor},
abstract = {he main purpose of this work is to describe a generalization of the Grothendieck construction for pseudofunctors which provides a biequivalence between the 2-categories of pseudofunctors and fibrations. For any bicategory B, we describe a tricategory of B- indexeded bicategories which are the weakest possible generalization of pseudofunctors to the immediate next level. Then we introduce a notion of a fibration of bicategories, which generalizes 2-fibrations of strict 2-categories defined by Hermida. Finally we give an explicit construction of an analog of the Grothendieck construction which provides a triequivalence between the 3-category of B-indexeded bicategories and the 3-category of 2-fibrations over B.}
}
@online{bakovicGrothendieckConstructionBicategories,
title = {Grothendieck Construction for Bicategories},
author = {Baković, Igor},
location = {Rudjer Bošković Institute},
url = {https://www2.irb.hr/korisnici/ibakovic/sgc.pdf},
abstract = {In this article, we give the generalization of the Grothendieck construction for pseudo functors given in [5], which provides a biequivalence between the 2-categories of pseudofunctors and fibrations. We define the second Grothendieck construction which to any pseudo 2-functor associates a 2-fibration, defined by Hermida [6], and we prove the biequivalence between the 2-category of pseudo 2-functors and the 2-category of 2-fibrations.},
langid = {english},
pubstate = {prepublished}
}
@incollection{barrAcyclicModelsTriples1966,
title = {Acyclic {{Models}} and {{Triples}}},
booktitle = {Proceedings of the {{Conference}} on {{Categorical Algebra}}},
author = {Barr, Michael and Beck, Jon},
editor = {Eilenberg, S. and Harrison, D. K. and MacLane, S. and Röhrl, H.},
date = {1966},
pages = {336--343},
publisher = {Springer Berlin Heidelberg},
location = {Berlin, Heidelberg},
doi = {10.1007/978-3-642-99902-4_16},
url = {http://link.springer.com/10.1007/978-3-642-99902-4_16},
urldate = {2023-02-19},
isbn = {978-3-642-99904-8},
langid = {english}
}
@article{barrCartanEilenbergCohomologyTriples1996,
title = {Cartan-{{Eilenberg}} Cohomology and Triples},
author = {Barr, Michael},
date = {1996-11},
journaltitle = {Journal of Pure and Applied Algebra},
shortjournal = {Journal of Pure and Applied Algebra},
volume = {112},
number = {3},
pages = {219--238},
issn = {00224049},
doi = {10.1016/0022-4049(95)00138-7},
url = {https://linkinghub.elsevier.com/retrieve/pii/0022404995001387},
urldate = {2023-02-19},
langid = {english},
file = {/home/patrick/Zotero/storage/MPHYTJVF/Barr - 1996 - Cartan-Eilenberg cohomology and triples.pdf}
}
@inproceedings{barrCompositeCotriplesDerived1966,
title = {Composite {{Cotriples}} and {{Derived Functors}}},
booktitle = {Seminar on {{Triples}} and {{Categorical Homology Theory}}},
author = {Barr, Michael},
date = {1966/1967},
volume = {80},
pages = {336},
publisher = {Springer-Verlag},
location = {Forschungsinstitut fur MathematiK, ETH, Zurich.},
abstract = {The main result of [2] is that the cohomology of an algebra with respect to the free associative algebra cotriple can be described by the resolution given by U. Shukla in [8]. That looks like a composite resolution; first an algebra is resolved by means of free modules (over the ground ring) and then this resolution is given the structure of a DG-algebra and resolved by the categorical bar resolution. This suggests that similar results might be obtained for all categories of objects with "two structures". Not surprisingly this turns out to involve a coherence condition between the structures which,for ordinary algebras, turns out to reduce to the distributive law. It was suggested in this connection by J. Beck and H. Appelgate.},
eventtitle = {Seminar on {{Triples}} and {{Categorical Homology Theory}}},
isbn = {978-3-540-04601-1},
langid = {english}
}
@article{barrContractibleSimplicialObjects2019,
title = {Contractible Simplicial Objects},
author = {Barr, Michael and Kennison, John F. and Raphael, Robert M.},
date = {2019},
journaltitle = {Commentationes Mathematicae Universitatis Carolinae},
volume = {60},
number = {4},
pages = {473--495},
publisher = {{Charles University in Prague, Faculty of Mathematics and Physics}},
issn = {0010-2628},
url = {https://eudml.org/doc/295068},
urldate = {2022-12-23},
langid = {english},
file = {/home/patrick/Zotero/storage/RG3PKWIX/295068.html}
}
@article{barrContractibleSimplicialObjects2020,
title = {Contractible Simplicial Objects},
author = {Barr, Michael and Kennison, John F. and Raphael, Robert},
date = {2020-02-21},
journaltitle = {Commentationes Mathematicae Universitatis Carolinae},
volume = {60},
number = {4},
pages = {473--495},
issn = {0010-2628, 1213-7243},
doi = {10.14712/1213-7243.2019.023},
url = {http://cmuc.karlin.mff.cuni.cz/doi/10.14712/1213-7243.2019.023},
urldate = {2022-12-23},
abstract = {We raise the question of when a simplicial object in a category is deemed contractible. The literature offers three definitions. One is the existence of an “extra degeneracy”, indexed by −1, which does not quite live up to the name. This can be strengthened to a “strong extra degeneracy”. Another possibility is that it be homotopic to a constant simplicial object. Despite claims in the literature to the contrary, we show that all three are distinct concepts with strong extra degeneracy implies extra degeneracy implies homotopic to a constant and give explicit examples to show the converses fail.},
langid = {english},
file = {/home/patrick/Zotero/storage/K33DI7SC/Michael et al. - 2020 - Contractible simplicial objects.pdf}
}
@inproceedings{barrHomologyStandardConstructions1966,
title = {Homology and {{Standard Constructions}}},
booktitle = {Seminar on {{Triples}} and {{Categorical Homology Theory}}},
author = {Barr, Michael and Beck, Jonathan},
date = {1966/1967},
series = {Forschungsinstitut Fur {{Mathematik}}, {{ETH}}, {{Zurich}}},
volume = {80},
pages = {245--345},
publisher = {Springer-Verlag},
location = {Forschungsinstitut fur Mathematik, ETH, Zurich.},
abstract = {In ordinary homological algebra, if M is an R-module, the usual way of starting to construct a projective resolution of M is to let F be the free R-module generated by the elements of M and F -* M the epimorphism determined by (m) -+ m . One then takes the kernel of F -* M and continues the process. But notice that in the construction of F -+ M a lot of structure is customarily overlooked. F is actually a functor MG of M , F -+ M is an instance of a natural transformation G -+ (identity functor) ; there is also a "comultiplication" G -+ GG which is a little less evident. The functor G , equipped with these structures, is an example of what is called a standard construction or "cotriple". In this paper we start with a category C, , a cotriple 6 in C. , and show how resolutions and derived functors or homology can be constructed by means of this tool alone. The category C. will be non-abelian in general (note that even for modules the cotriple employed fails to respect the additive structure of the category), and the coefficients will consist of an arbitrary functor E : C. -+ Q. where \& is an abelian category. For ordinary homology and cohomology theories, E will be tensoring, homming or deriving with or into a module of some kind. To summarize the contents of the paper: In § 1 we define the derived functors and give several examples of categories with cotriples. In § 2 we study the derived functors H ( »E)\textasciicircum{} as functors on C, and give several of their properties. In § 3 we fix a first variable X e C. and study H (X, ) as a functor of the abelian variable E . As such it admits a simple axiomatic characterization. § 4 considers the case in which C. is additive and shows that the general theory can always, in effect, be reduced to that case. In § 5 we study the relation between cotriples and projective classes (defined - essentially - by Eilenberg-Moore [ 16 ]) and show that the homology only depends on the projective class defined by the cotriple. §§ 6-9 are concerned largely with various special properties that these derived functors possess in well known algebraic categories (groups, modules, algebras, ....). In § 10 we consider the problem of defining a cotriple to produce a given projective class (in a sense, the converse problem to that studied in § 5) by means of "models". We also compare the results with other theories of derived functors based on models. § 11 is concerned with some technical items on acyclic models.},
langid = {english}
}
@article{barthelConstructionFunctorialFactorizations2013,
title = {On the Construction of Functorial Factorizations for Model Categories},
author = {Barthel, Tobias and Riehl, Emily},
date = {2013-04-17},
journaltitle = {Algebraic \& Geometric Topology},
shortjournal = {Algebr. Geom. Topol.},
volume = {13},
number = {2},
eprint = {1204.5427},
eprinttype = {arXiv},
eprintclass = {math},
pages = {1089--1124},
issn = {1472-2739, 1472-2747},
doi = {10.2140/agt.2013.13.1089},
url = {http://arxiv.org/abs/1204.5427},
urldate = {2023-01-03},
abstract = {We present general techniques for constructing functorial factorizations appropriate for model structures that are not known to be cofibrantly generated. Our methods use "algebraic" characterizations of fibrations to produce factorizations that have the desired lifting properties in a completely categorical fashion. We illustrate these methods in the case of categories enriched, tensored, and cotensored in spaces, proving the existence of Hurewicz-type model structures, thereby correcting an error in earlier attempts by others. Examples include the categories of (based) spaces, (based) G-spaces, and diagram spectra among others.},
keywords = {55U35 55U40 18A32 18G55,Mathematics - Algebraic Topology,Mathematics - Category Theory},
note = {Comment: Final journal version to appear in Algebraic \& Geometric Topology with improvements suggested by the referee},
file = {/home/patrick/Zotero/storage/R3VZX9GE/On the construction of functori - Emily Riehl.pdf}
}
@online{barthelSixModelStructures2014,
title = {Six Model Structures for {{DG-modules}} over {{DGAs}}: {{Model}} Category Theory in Homological Action},
shorttitle = {Six Model Structures for {{DG-modules}} over {{DGAs}}},
author = {Barthel, Tobias and May, J. P. and Riehl, Emily},
date = {2014-08-03},
eprint = {1310.1159},
eprinttype = {arXiv},
eprintclass = {math},
url = {http://arxiv.org/abs/1310.1159},
urldate = {2023-01-03},
abstract = {In Part 1, we describe six projective-type model structures on the category of differential graded modules over a differential graded algebra A over a commutative ring R. When R is a field, the six collapse to three and are well-known, at least to folklore, but in the general case the new relative and mixed model structures offer interesting alternatives to the model structures in common use. The construction of some of these model structures requires two new variants of the small object argument, an enriched and an algebraic one, and we describe these more generally. In Part 2, we present a variety of theoretical and calculational cofibrant approximations in these model categories. The classical bar construction gives cofibrant approximations in the relative model structure, but generally not in the usual one. In the usual model structure, there are two quite different ways to lift cofibrant approximations from the level of homology modules over homology algebras, where they are classical projective resolutions, to the level of DG-modules over DG-algebras. The new theory makes model theoretic sense of earlier explicit calculations based on one of these constructions. A novel phenomenon we encounter is isomorphic cofibrant approximations with different combinatorial structure such that things proven in one avatar are not readily proven in the other.},
pubstate = {prepublished},
keywords = {16E45 18G25 18G55 55S30 55T20 55U35,Mathematics - Algebraic Topology,Mathematics - Category Theory,Mathematics - K-Theory and Homology},
note = {Comment: 68 pages; v2: various expositional improvements suggested by an anonymous referee},
file = {/home/patrick/Zotero/storage/GCLU3IQN/Barthel et al. - 2014 - Six model structures for DG-modules over DGAs Mod.pdf;/home/patrick/Zotero/storage/W8ULC6NZ/1310.html}
}
@inproceedings{beckDistributiveLaws1966,
title = {Distributive {{Laws}}},
booktitle = {Seminar on {{Triples}} and {{Categorical Homology Theory}}},
author = {Beck, Jonathan},
date = {1966/1967},
volume = {80},
pages = {119--140},
publisher = {Springer-Verlag},
location = {Forschungsinstitut fur MathematiK, ETH, Zurich.},
abstract = {The usual distributive law of multiplication over addition, (x + x..) (y +y, )-* x y + xy + x y + x y , combines the mathematical structures of abelian groups and monoids to produce the more interesting and complex structure of rings. From the point of view of "triples," a distributive law provides a way of interchanging two types of operations and making the functorial composition of two triples into a more complex triple. The main formal properties and different ways of looking at distributive laws are given in §1. §2 is about algebras over composite triples. These are found to be objects with two structures, and the distributive law or interchange of operations appears in its usual form as an equation which the two types of operations must obey. §3 is about some frequently-occurring diagrams of adjoint functors which are connected with distributive laws. §4 is devoted to Examples. There is an Appendix on compositions of adjoint functors.},
eventtitle = {Seminar on {{Triples}} and {{Categorical Homology Theory}}},
isbn = {978-3-540-04601-1},
langid = {english}
}
@thesis{beckTriplesAlgebrasCohomology1967,
title = {Triples, {{Algebras}} and {{Cohomology}}},
author = {Beck, Jonathan},
date = {1967},
institution = {Columbia University},
url = {http://www.tac.mta.ca/tac/reprints/articles/2/tr2.pdf},
urldate = {2023-02-19},
abstract = {This thesis is intended to complete the exposition in [Eilenberg \& Moore (1965a)] with regard to certain points. In §1 we recall the definitions of triple, algebra over a triple, and give our main (original) definition, that of tripleable adjoint pair of functors. In §2 we show how to obtain a cohomology theory from an adjoint pair of functors. In §3, when the adjoint pair is tripleable, we prove that the cohomology group H1 classifies principal homogeneous objects. When coefficients are in a module, principal objects are interpreted as algebra extensions. §4 is devoted to examples. Many categories occurring in algebra are shown to be tripleable. The corresponding cohomology and extension theories, ranging from groups and algebras to the classical Ext(A, C), are discussed. Many new theories arise. A method for proving coincidence of triple cohomology with certain standard theories has been given by [Barr \& Beck (1966)]. That paper contains a summary of the present work.},
langid = {english},
pagetotal = {60}
}
@book{bibelConferenceAutomatedDeduction1980,
title = {Conference on {{Automated Deduction}}. 5: {{Les Arcs}}, {{France}}, {{July}} 8 - 11, 1980 / Ed. by {{W}}. {{Bibel}}},
shorttitle = {Conference on {{Automated Deduction}}. 5},
editor = {Bibel, Wolfgang},
date = {1980},
series = {Lecture Notes in Computer Science},
number = {87},
eventtitle = {Conference on {{Automated Deduction}}},
isbn = {978-3-540-10009-6 978-0-387-10009-8},
langid = {english},
pagetotal = {385}
}
@article{bourkeAlgebraicWeakFactorisation2016,
title = {Algebraic Weak Factorisation Systems {{II}}: {{Categories}} of Weak Maps},
shorttitle = {Algebraic Weak Factorisation Systems {{II}}},
author = {Bourke, John and Garner, Richard},
date = {2016-01},
journaltitle = {Journal of Pure and Applied Algebra},
shortjournal = {Journal of Pure and Applied Algebra},
volume = {220},
number = {1},
pages = {148--174},
issn = {00224049},
doi = {10.1016/j.jpaa.2015.06.003},
url = {https://linkinghub.elsevier.com/retrieve/pii/S0022404915001711},
urldate = {2023-05-29},
langid = {english},
file = {/home/patrick/Zotero/storage/3TS7Z366/Bourke and Garner - 2016 - Algebraic weak factorisation systems II Categorie.pdf}
}
@article{bourkeAlgebraicWeakFactorisation2016a,
title = {Algebraic Weak Factorisation Systems {{I}}: {{Accessible AWFS}}},
shorttitle = {Algebraic Weak Factorisation Systems {{I}}},
author = {Bourke, John and Garner, Richard},
date = {2016-01},
journaltitle = {Journal of Pure and Applied Algebra},
shortjournal = {Journal of Pure and Applied Algebra},
volume = {220},
number = {1},
pages = {108--147},
issn = {00224049},
doi = {10.1016/j.jpaa.2015.06.002},
url = {https://linkinghub.elsevier.com/retrieve/pii/S002240491500170X},
urldate = {2023-05-29},
langid = {english},
file = {/home/patrick/Zotero/storage/MEM4IY5Q/Bourke and Garner - 2016 - Algebraic weak factorisation systems I Accessible.pdf}
}
@online{brandenburgTensorCategoricalFoundations2014,
title = {Tensor Categorical Foundations of Algebraic Geometry},
author = {Brandenburg, Martin},
date = {2014-10-07},
eprint = {1410.1716},
eprinttype = {arXiv},
eprintclass = {math},
url = {http://arxiv.org/abs/1410.1716},
urldate = {2023-02-04},
abstract = {Tannaka duality and its extensions by Lurie, Sch¨appi et al. reveal that many schemes as well as algebraic stacks may be identified with their tensor categories of quasi-coherent sheaves. In this thesis we study constructions of cocomplete tensor categories (resp. cocontinuous tensor functors) which usually correspond to constructions of schemes (resp. their morphisms) in the case of quasi-coherent sheaves. This means to globalize the usual local-global algebraic geometry. For this we first have to develop basic commutative algebra in an arbitrary cocomplete tensor category. We then discuss tensor categorical globalizations of affine morphisms, projective morphisms, immersions, classical projective embeddings (Segre, Plu¨cker, Veronese), blow-ups, fiber products, classifying stacks and finally tangent bundles. It turns out that the universal properties of several moduli spaces or stacks translate to the corresponding tensor categories.},
langid = {english},
pubstate = {prepublished},
keywords = {Mathematics - Algebraic Geometry,Mathematics - Category Theory},
note = {Comment: PhD thesis; 247 pages},
file = {/home/patrick/Zotero/storage/N49MNC2Z/Brandenburg - 2014 - Tensor categorical foundations of algebraic geomet.pdf}
}
@online{buckleyFibred2categoriesBicategories2013,
title = {Fibred 2-Categories and Bicategories},
author = {Buckley, Mitchell},
date = {2013-03-25},
eprint = {1212.6283},
eprinttype = {arXiv},
eprintclass = {math},
doi = {10.48550/arXiv.1212.6283},
url = {http://arxiv.org/abs/1212.6283},
urldate = {2025-11-29},
abstract = {We generalise the usual notion of fibred category; first to fibred 2-categories and then to fibred bicategories. Fibred 2-categories correspond to 2-functors from a 2-category into 2-Cat. Fibred bicategories correspond to trihomomorphisms from a bicategory into Bicat. We describe the Grothendieck construction for each kind of fibration and present a few examples of each. Fibrations in our sense, between bicategories, are closed under composition and are stable under equiv-comma. The free such fibration on a homomorphism is obtained by taking an oplax comma along an identity.},
pubstate = {prepublished},
keywords = {Mathematics - Category Theory},
note = {Comment: Changes to the introduction: gives a better description of how our work relates to the work of others. Added a few remarks},
file = {/home/patrick/Zotero/storage/N68IZ5ER/Buckley - 2013 - Fibred 2-categories and bicategories.pdf;/home/patrick/Zotero/storage/WNL4UPCR/1212.html}
}
@article{buckleyFibred2categoriesBicategories2014,
title = {Fibred 2-Categories and Bicategories},
author = {Buckley, Mitchell},
date = {2014-06},
journaltitle = {Journal of Pure and Applied Algebra},
shortjournal = {Journal of Pure and Applied Algebra},
volume = {218},
number = {6},
pages = {1034--1074},
issn = {00224049},
doi = {10.1016/j.jpaa.2013.11.002},
url = {https://linkinghub.elsevier.com/retrieve/pii/S0022404913002065},
urldate = {2023-10-07},
langid = {english},
keywords = {2-category,bicategory,fibration},
file = {/home/patrick/Zotero/storage/NDE3CWPT/Buckley - 2014 - Fibred 2-categories and bicategories.pdf}
}
@article{carboniConnectedLimitsFamilial1995,
title = {Connected Limits, Familial Representability and {{Artin}} Glueing},
author = {Carboni, Aurelio and Johnstone, Peter},
date = {1995-12},
journaltitle = {Mathematical Structures in Computer Science},
shortjournal = {Math. Struct. Comp. Sci.},
volume = {5},
number = {4},
pages = {441--459},
issn = {0960-1295, 1469-8072},
doi = {10.1017/S0960129500001183},
url = {https://www.cambridge.org/core/product/identifier/S0960129500001183/type/journal_article},
urldate = {2023-02-20},
abstract = {We consider the following two properties of a functor F from a presheaf topos to the category of sets: (a) F preserves connected limits, and (b) the Artin glueing of F is again a presheaf topos. We show that these two properties are in fact equivalent. In the process, we develop a general technique for associating categorical properties of a category obtained by Artin glueing with preservation properties of the functor along which the glueing takes place. We also give a syntactic characterization of those monads on Set whose functor parts have the above properties, and whose units and multiplications are cartesian natural transformations.},
langid = {english}
}
@inproceedings{coenELPIFastEmbeddable2015,
title = {{{ELPI}}: Fast, {{Embeddable}}, {{λProlog Interpreter}}},
booktitle = {Proceedings of {{LPAR}}},
author = {Coen, Claudio Sacerdoti and Tassi, Enrico and Dunchev, Cvetan and Guidi, Ferrucio},
date = {2015-11},
location = {Suva, Fiji},
abstract = {We present a new interpreter for λProlog that runs consistently faster than the byte code compiled by Teyjus, that is believed to be the best available implementation of λProlog. The key insight is the identification of a fragment of the language, which we call reduction-free fragment (L β λ), that occurs quite naturally in λProlog programs and that admits constant time reduction and unification rules.},
eventtitle = {Logic for {{Programming}}, {{Artificial Intelligence}} and {{Reasoning}}}
}
@article{cruttwellDoubleFibrations2022,
title = {Double {{Fibrations}}},
author = {Cruttwell, G. S. H. and Lambert, M. J. and Pronk, D. A. and Szyld, M},
date = {2022},
journaltitle = {Theory and Applications of Categories},
shortjournal = {T.A.C.},
volume = {38},
number = {35},
pages = {1326--1394},
url = {http://www.tac.mta.ca/tac/volumes/38/35/38-35abs.html},
langid = {english}
}
@article{cruttwellUnifiedFrameworkGeneralized2010,
title = {A Unified Framework for Generalized Multicategories},
author = {Cruttwell, G. S. H. and Shulman, Michael A.},
date = {2010-04-05},
journaltitle = {Theory and Applications of Categories},
shortjournal = {Theory appl. categ.},
volume = {24},
number = {21},
pages = {580--655},
issn = {1201-561X},
url = {http://www.tac.mta.ca/tac/volumes/24/21/24-21.pdf},
abstract = {Notions of generalized multicategory have been defined in numerous con- texts throughout the literature, and include such diverse examples as symmetric multi- categories, globular operads, Lawvere theories, and topological spaces. In each case, generalized multicategories are defined as the “lax algebras” or “Kleisli monoids” rela- tive to a “monad” on a bicategory. However, the meanings of these words differ from author to author, as do the specific bicategories considered. We propose a unified frame- work: by working with monads on double categories and related structures (rather than bicategories), one can define generalized multicategories in a way that unifies all previous examples, while at the same time simplifying and clarifying much of the theory.}
}
@article{dawsonSpanConstruction2010,
title = {The {{Span Construction}}},
author = {Dawson, Robert and Pronk, Dorette and Paré, Robert},
date = {2010},
journaltitle = {Theory and Applications of Categories},
volume = {24},
number = {13},
pages = {302--377}
}
@article{doldPartitionsUnityTheory1963,
title = {Partitions of {{Unity}} in the {{Theory}} of {{Fibrations}}},
author = {Dold, Albrecht},
date = {1963-09},
journaltitle = {The Annals of Mathematics},
shortjournal = {The Annals of Mathematics},
volume = {78},
number = {2},
eprint = {1970341},
eprinttype = {jstor},
pages = {223},
issn = {0003486X},
doi = {10.2307/1970341},
url = {https://www.jstor.org/stable/1970341?origin=crossref},
urldate = {2023-05-27}
}
@article{dumancicKnowledgeRefactoringInductive2021,
title = {Knowledge {{Refactoring}} for {{Inductive Program Synthesis}}},
author = {Dumancic, Sebastijan and Guns, Tias and Cropper, Andrew},
date = {2021-05-18},
journaltitle = {Proceedings of the AAAI Conference on Artificial Intelligence},
shortjournal = {AAAI},
volume = {35},
number = {8},
pages = {7271--7278},
issn = {2374-3468, 2159-5399},
doi = {10.1609/aaai.v35i8.16893},
url = {https://ojs.aaai.org/index.php/AAAI/article/view/16893},
urldate = {2023-04-24},
abstract = {Humans constantly restructure knowledge to use it more efficiently. Our goal is to give a machine learning system similar abilities so that it can learn more efficiently. We introduce the knowledge refactoring problem, where the goal is to restructure a learner's knowledge base to reduce its size and to minimise redundancy in it. We focus on inductive logic programming, where the knowledge base is a logic program. We introduce Knorf, a system which solves the refactoring problem using constraint optimisation. A key feature of Knorf is that, rather than simply removing knowledge, it also introduces new knowledge through predicate invention. We evaluate our approach on two domains: building Lego structures and real-world string transformations. Our experiments show that learning from refactored knowledge can improve predictive accuracies fourfold and reduce learning times by half.},
file = {/home/patrick/Zotero/storage/9LQNLD7M/Dumancic et al. - 2021 - Knowledge Refactoring for Inductive Program Synthe.pdf}
}
@thesis{duncanUseDataMiningAutomatic2007,
title = {The {{Use}} of {{Data-Mining}} for the {{Automatic Formation}} of {{Tactics}}},
author = {Duncan, Hazel},
date = {2007},
institution = {School of Informatics, University of Edinburgh},
location = {UK},
url = {http://gpbib.cs.ucl.ac.uk/gp-html/hazelthesis.html},
abstract = {As functions which further the state of a proof in automated theorem proving, tactics are an important development in automated deduction. This thesis describes a method to tackle the problem of tactic formation. Tactics must currently be developed by hand, which can be a complicated and time-consuming process. A method is presented for the automatic production of useful tactics. The method presented works on the principle that commonly occurring patterns within proof corpora may have some significance and could therefore be exploited to provide novel tactics. These tactics are discovered using a three step process. Firstly a suitable corpus is chosen and processed. One example of a suitable corpus is that of the Isabelle theorem prover. A number of possible abstractions are presented for this corpus. Secondly, machine learning techniques are used to data-mine each corpus and find sequences of commonly occurring proof steps. The specifics of a proof step are defined by the specified abstraction. The formation of these tactics is completed using evolutionary techniques to combine these patterns into compound tactics. These new tactics are applied using a naive prover as well as undergoing manual evaluation. The tactics show favourable results across a selection of tests, justifying the claim that this project provides a novel method of automatically producing tactics which are both viable and useful},
langid = {english},
pagetotal = {151}
}
@incollection{dwyerHomotopyTheoriesModel,
title = {Homotopy Theories and Model Categories},
booktitle = {Handbook of {{Algebraic Topology}}},
author = {Dwyer, William G. and Spalinski, J.},
publisher = {Elsevier},
isbn = {978-0-444-81779-2}
}
@incollection{dwyerHomotopyTheoriesModel1995,
title = {Homotopy Theories and Model Categories},
booktitle = {Handbook of Algebraic Topology},
author = {Dwyer, William G. and Spalinski, J.},
editor = {James, I. M.},
date = {1995},
publisher = {Elsevier Science B.V},
location = {Amsterdam ; New York},
url = {https://math.jhu.edu/~eriehl/616-s16/DwyerSpalinski.pdf},
abstract = {This paper is an introduction to the theory of “model categories”, which was devel- oped by Quillen in [22] and [23]. By definition a model category is just an ordinary category with three specified classes of morphisms, called fibrations, cofibrations and weak equivalences, which satisfy a few simple axioms that are deliberately rem- iniscent of properties of topological spaces. Surprisingly enough, these axioms give a reasonably general context in which it is possible to set up the basic machinery of homotopy theory. The machinery can then be used immediately in a large number of different settings, as long as the axioms are checked in each case. Although many of these settings are geometric (spaces (§8), fibrewise spaces (3.11), G-spaces [11], spectra [5], diagrams of spaces [10] . . .), some of them are not (chain complexes (§7), simplicial commutative rings [24], simplicial groups [23] . . .). Certainly each setting has its own technical and computational peculiarities, but the advantage of an abstract approach is that they can all be studied with the same tools and described in the same language. What is the suspension of an augmented commuta- tive algebra? One of incidental appeals of Quillen’s theory (to a topologist!) is that it both makes a question like this respectable and gives it an interesting answer (11.3). We have tried to minimize the prerequisites needed for understanding this pa- per; it should be enough to have some familiarity with CW-complexes, with chain complexes, and with the basic terminology associated with categories. Almost all of the material we present is due to Quillen [22], but we have replaced his treatment of suspension functors and loop functors by a general construction of homotopy pushouts and homotopy pullbacks in a model category. What we do along these lines can certainly be carried further. This paper is not in any sense a survey of everything that is known about model categories; in fact we cover only a fraction of the material in [22]. The last section has a discussion of some ways in which model categories have been used in topology and algebra.},
isbn = {978-0-444-81779-2},
keywords = {Algebraic topology},
file = {/home/patrick/Zotero/storage/XSRQQZ2S/Homotopy theories and model categories - W. G. Dwyer.pdf}
}
@inproceedings{ellisBiasReformulationOneShot2014,
title = {Bias {{Reformulation}} for {{One-Shot Function Induction}}},
booktitle = {Frontiers in {{Artificial Intelligence}} and {{Applications}}},
author = {Ellis, Kevin and Lin, Dianhuan and Dechter, Eyal and Tenenbaum, Joshua B. and Muggleton, Stephen H.},
date = {2014},
pages = {7},
publisher = {IOS Press},
doi = {10.3233/978-1-61499-419-0-525},
url = {https://dspace.mit.edu/handle/1721.1/102524},
abstract = {In recent years predicate invention has been underexplored as a bias reformulation mechanism within Inductive Logic Programming due to difficulties in formulating efficient search mechanisms. However, recent papers on a new approach called Meta-Interpretive Learning have demonstrated that both predicate invention and learning recursive predicates can be efficiently implemented for various fragments of definite clause logic using a form of abduction within a meta-interpreter. This paper explores the effect of bias reformulation produced by Meta-Interpretive Learning on a series of Program Induction tasks involving string transformations. These tasks have real-world applications in the use of spreadsheet technology. The existing implementation of program induction in Microsoft’s FlashFill (part of Excel 2013) already has strong performance on this problem, and performs one-shot learning, in which a simple transformation program is generated from a single example instance and applied to the remainder of the column in a spreadsheet. However, no existing technique has been demonstrated to improve learning performance over a series of tasks in the way humans do. In this paper we show how a functional variant of the recently developed MetagolD system can be applied to this task. In experiments we study a regime of layered bias reformulation in which size-bounds of hypotheses are successively relaxed in each layer and learned programs re-use invented predicates from previous layers. Results indicate that this approach leads to consistent speed increases in learning, more compact definitions and consistently higher predictive accuracy over successive layers. Comparison to both FlashFill and human performance indicates that the new system, MetagolDF , has performance approaching the skill level of both an existing commercial system and that of humans on one-shot learning over the same tasks. The induced programs are relatively easily read and understood by a human programmer.},
eventtitle = {Frontiers in {{Artificial Intelligence}} and {{Applications}}},
isbn = {978-1-61499-419-0-525}
}
@online{ellisDreamCoderGrowingGeneralizable2020,
title = {{{DreamCoder}}: {{Growing}} Generalizable, Interpretable Knowledge with Wake-Sleep {{Bayesian}} Program Learning},
shorttitle = {{{DreamCoder}}},
author = {Ellis, Kevin and Wong, Catherine and Nye, Maxwell and Sable-Meyer, Mathias and Cary, Luc and Morales, Lucas and Hewitt, Luke and Solar-Lezama, Armando and Tenenbaum, Joshua B.},
date = {2020-06-15},
eprint = {2006.08381},
eprinttype = {arXiv},
eprintclass = {cs},
url = {http://arxiv.org/abs/2006.08381},
urldate = {2023-04-23},
abstract = {Expert problem-solving is driven by powerful languages for thinking about problems and their solutions. Acquiring expertise means learning these languages -- systems of concepts, alongside the skills to use them. We present DreamCoder, a system that learns to solve problems by writing programs. It builds expertise by creating programming languages for expressing domain concepts, together with neural networks to guide the search for programs within these languages. A ``wake-sleep'' learning algorithm alternately extends the language with new symbolic abstractions and trains the neural network on imagined and replayed problems. DreamCoder solves both classic inductive programming tasks and creative tasks such as drawing pictures and building scenes. It rediscovers the basics of modern functional programming, vector algebra and classical physics, including Newton's and Coulomb's laws. Concepts are built compositionally from those learned earlier, yielding multi-layered symbolic representations that are interpretable and transferrable to new tasks, while still growing scalably and flexibly with experience.},
pubstate = {prepublished},
keywords = {Computer Science - Artificial Intelligence,Computer Science - Machine Learning},
file = {/home/patrick/Zotero/storage/NXVGGDFM/Ellis et al. - 2020 - DreamCoder Growing generalizable, interpretable k.pdf;/home/patrick/Zotero/storage/76GXZ3X9/2006.html}
}
@thesis{farquharMetainterpretiveLearningProof2022,
title = {Meta-Interpretive Learning of Proof Strategies},
author = {Farquhar, Colin},
date = {2022-05},
institution = {Heriot-Watt University},
location = {Edinburgh, Scotland},
url = {https://www.ros.hw.ac.uk/handle/10399/4706},
urldate = {2023-03-28},
abstract = {In modern mathematics, mechanised theorem proving software is playing an ever increasing role. By enlisting the help of computers mathematicians are able to formally prove more complex results than they perhaps otherwise could, however those computers are still incapable of drawing many of the conclusions which would be obvious to a human user and so human intervention is still required. In this thesis we consider the use of an adapted machine learning technique to begin addressing this issue. We consider the use of proof strategies to provide a high-level view of how a proof is structured, including information about why a particular step was taken. We extend the Metagol meta-interpretive learning tool to facilitate learning these strategies. We begin with a small set of examples and refine our approach, demonstrating the improvements experimentally. We go on to discuss the learning of more complicated strategies, some of the issues faced in doing so and how we could address them. We conclude by evaluating the experiments as a whole, identifying the weak points in our approach and suggesting ways in which they can be addressed in future work.},
langid = {english},
pagetotal = {147}
}
@inproceedings{freitasVerifyingHeapAI4FM,
title = {Verifying the Heap: An {{AI4FM}} Case Study},
booktitle = {Contributions to \{{{AI4FM}}\} 2013},
author = {Freitas, Leo and Jones, Cliff and Velykis, Andrius and Whiteside, Iain},
series = {Technical {{Report}}, {{Heriot-Watt University}}},
pages = {7--9},
url = {http://www.macs.hw.ac.uk/cs/techreps/docs/files/HW-MACS-TR-0100.pdf},
eventtitle = {{{ITP-WS-13}}}
}
@article{gambinoPolynomialFunctorsPolynomial2013,
title = {Polynomial Functors and Polynomial Monads},
author = {Gambino, Nicola and Kock, Joachim},
date = {2013-01},
journaltitle = {Mathematical Proceedings of the Cambridge Philosophical Society},
shortjournal = {Math. Proc. Camb. Phil. Soc.},
volume = {154},
number = {1},
pages = {153--192},
issn = {0305-0041, 1469-8064},
doi = {10.1017/S0305004112000394},
url = {https://www.cambridge.org/core/product/identifier/S0305004112000394/type/journal_article},
urldate = {2023-02-13},
abstract = {Abstract We study polynomial functors over locally cartesian closed categories. After setting up the basic theory, we show how polynomial functors assemble into a double category, in fact a framed bicategory. We show that the free monad on a polynomial endofunctor is polynomial. The relationship with operads and other related notions is explored.},
langid = {english},
file = {/home/patrick/Zotero/storage/Q6TX4HPK/Gambino and Kock - 2013 - Polynomial functors and polynomial monads.pdf}
}
@online{garnerCofibrantlyGeneratedNatural2007,
title = {Cofibrantly Generated Natural Weak Factorisation Systems},
author = {Garner, Richard},
date = {2007-02-12},
eprint = {math/0702290},
eprinttype = {arXiv},
url = {http://arxiv.org/abs/math/0702290},
urldate = {2023-01-03},
abstract = {There is an “algebraisation” of the notion of weak factorisation system (w.f.s.) known as a natural weak factorisation system. In it, the two classes of maps of a w.f.s. are replaced by two categories of maps-with-structure, where the extra structure on a map now encodes a choice of liftings with respect to the other class. This extra structure has pleasant consequences: for example, a natural w.f.s. on C induces a canonical natural w.f.s. structure on any functor category [A, C]. In this paper, we define cofibrantly generated natural weak factorisation systems by analogy with cofibrantly generated w.f.s.’s. We then construct them by a method which is reminiscent of Quillen’s small object argument but produces factorisations which are much smaller and easier to handle, and show that the resultant natural w.f.s. is, in a suitable sense, freely generated by its generating cofibrations. Finally, we show that the two categories of maps-with-structure for a natural w.f.s. are closed under all the constructions we would expect of them: (co)limits, pushouts / pullbacks, transfinite composition, and so on.},
langid = {english},
pubstate = {prepublished},
keywords = {18A32 55U35,Mathematics - Algebraic Topology,Mathematics - Category Theory},
note = {Comment: 57 pages},
file = {C:\Users\gadge\Documents\Books and Papers\Algebraic Topology and Homological Algebra\Cofibrantly Generated Weak Natural Factorization Systems - Garner.pdf}
}
@article{garnerUnderstandingSmallObject2009,
title = {Understanding the Small Object Argument},
author = {Garner, Richard},
date = {2009-06},
journaltitle = {Applied Categorical Structures},
shortjournal = {Appl Categor Struct},
volume = {17},
number = {3},
eprint = {0712.0724},
eprinttype = {arXiv},
eprintclass = {math},
pages = {247--285},
issn = {0927-2852, 1572-9095},
doi = {10.1007/s10485-008-9137-4},
url = {http://arxiv.org/abs/0712.0724},
urldate = {2023-01-03},
abstract = {The small object argument is a transfinite construction which, starting from a set of maps in a category, generates a weak factorisation system on that category. As useful as it is, the small object argument has some problematic aspects: it possesses no universal property; it does not converge; and it does not seem to be related to other transfinite constructions occurring in categorical algebra. In this paper, we give an “algebraic” refinement of the small object argument, cast in terms of Grandis and Tholen’s natural weak factorisation systems, which rectifies each of these three deficiencies.},
langid = {english},
keywords = {18A32 55U35,Mathematics - Algebraic Topology,Mathematics - Category Theory},
note = {Comment: 42 pages; supersedes the earlier arXiv preprint math/0702290; v2: final journal version, minor corrections only},
file = {C:\Users\gadge\Documents\Calibre_Library\Richard Garner\Understanding the Small Object Argu (2035)\Understanding the Small Object - Richard Garner.pdf}
}
@article{gauthierTacticToeLearningProve2021,
title = {{{TacticToe}}: {{Learning}} to {{Prove}} with {{Tactics}}},
shorttitle = {{{TacticToe}}},
author = {Gauthier, Thibault and Kaliszyk, Cezary and Urban, Josef and Kumar, Ramana and Norrish, Michael},
date = {2021-02},
journaltitle = {Journal of Automated Reasoning},
shortjournal = {J Autom Reasoning},
volume = {65},
number = {2},
eprint = {1804.00596},
eprinttype = {arXiv},
eprintclass = {cs},
pages = {257--286},
issn = {0168-7433, 1573-0670},
doi = {10.1007/s10817-020-09580-x},
url = {http://arxiv.org/abs/1804.00596},
urldate = {2023-04-23},
abstract = {We implement a automated tactical prover TacticToe on top of the HOL4 interactive theorem prover. TacticToe learns from human proofs which mathematical technique is suitable in each proof situation. This knowledge is then used in a Monte Carlo tree search algorithm to explore promising tactic-level proof paths. On a single CPU, with a time limit of 60 seconds, TacticToe proves 66.4 percent of the 7164 theorems in HOL4's standard library, whereas E prover with auto-schedule solves 34.5 percent. The success rate rises to 69.0 percent by combining the results of TacticToe and E prover.},
keywords = {Computer Science - Artificial Intelligence,Computer Science - Logic in Computer Science},
file = {/home/patrick/Zotero/storage/TPMM4IAA/Gauthier et al. - 2021 - TacticToe Learning to Prove with Tactics.pdf;/home/patrick/Zotero/storage/X3QA4XQ9/1804.html}
}
@online{grandisIntercategories2015,
title = {Intercategories},
author = {Grandis, Marco and Paré, Robert},
date = {2015-09-11},
eprint = {1412.0144},
eprinttype = {arXiv},
eprintclass = {math},
url = {http://arxiv.org/abs/1412.0144},
urldate = {2023-09-09},
abstract = {We introduce a 3-dimensional categorical structure which we call intercategory. This is a kind of weak triple category with three kinds of arrows, three kinds of 2-dimensional cells and one kind of 3-dimensional cells. In one dimension, the compositions are strictly associative and unitary, whereas in the other two, these laws only hold up to coherent isomorphism. The main feature is that the interchange law between the second and third compositions does not hold, but rather there is a non invertible comparison cell which satisfies some coherence conditions. We introduce appropriate morphisms of intercategory, of which there are three types, and cells relating these. We show that these fit together to produce a strict triple category of intercategories.},
pubstate = {prepublished},
keywords = {18D05 18D10,Mathematics - Category Theory},
note = {Comment: 41 pages. New title and material rearranged according to the recommendations of referee. Some added examples. Final version to appear in Theory and Applications of Categories},
file = {/home/patrick/Zotero/storage/5RNCHX2I/Grandis and Paré - 2015 - Intercategories.pdf;/home/patrick/Zotero/storage/BKS8BDAF/1412.html}
}
@article{grandisIntercategoriesFrameworkThreedimensional2017,
title = {Intercategories: {{A}} Framework for Three-Dimensional Category Theory},
shorttitle = {Intercategories},
author = {Grandis, Marco and Paré, Robert},
date = {2017-05},
journaltitle = {Journal of Pure and Applied Algebra},
shortjournal = {Journal of Pure and Applied Algebra},
volume = {221},
number = {5},
pages = {999--1054},
issn = {00224049},
doi = {10.1016/j.jpaa.2016.08.002},
url = {https://linkinghub.elsevier.com/retrieve/pii/S0022404916301256},
urldate = {2023-09-07},
langid = {english},
file = {/home/patrick/Zotero/storage/I47UKN4T/Grandis and Paré - 2017 - Intercategories A framework for three-dimensional.pdf}
}
@article{grandisLimitsDoubleCategories1999,
title = {Limits in Double Categories},
author = {Grandis, Marco and Paré, Robert},
date = {1999},
journaltitle = {Cahiers de Topologie et Géométrie Différentielle Catégoriques},
volume = {40},
number = {3},
pages = {162--220},
publisher = {Dunod éditeur, publié avec le concours du CNRS},
url = {http://www.numdam.org/item/CTGDC_1999__40_3_162_0/},
langid = {english},
mrnumber = {1716779},
zmnumber = {0939.18007},
file = {/home/patrick/Zotero/storage/XABZG2JI/Grandis and Paré - 1999 - Limits in double categories.pdf}
}
@article{grandisNaturalWeakFactorization2006,
title = {Natural {{Weak Factorization Systems}}},
author = {Grandis, Marco and Tholen, Walter},
date = {2006},
journaltitle = {ARCHIVUM MATHEMATICUM (BRNO)},
volume = {42},
pages = {397--408},
abstract = {In order to facilitate a natural choice for morphisms created by the (left or right) lifting property as used in the definition of weak factorization systems, the notion of natural weak factorization system in the category K is introduced, as a pair (comonad, monad) over K2. The link with existing notions in terms of morphism classes is given via the respective Eilenberg–Moore categories.},
langid = {english},
file = {/home/patrick/Zotero/storage/A6SKKJJ9/Grandis and Tholen - NATURAL WEAK FACTORIZATION SYSTEMS.pdf}
}
@article{grandisTorsionTheoriesClosure2020,
title = {From Torsion Theories to Closure Operators and Factorization Systems},
author = {Grandis, Marco and {Dipartimento di Matematica, Universit`a di Genova, Via Dodecaneso 35, 16146-Genova, Italy} and Janelidze, George and {Department of Mathematics and Applied Mathematics, University of Cape Town, South Africa.}},
date = {2020-01-01},
journaltitle = {Categories and General Algebraic Structures with Application},
shortjournal = {CGASA},
volume = {12},
number = {1},
pages = {89--121},
issn = {23455853, 23455861},
doi = {10.29252/CGASA.12.1.89},
url = {http://cgasa.sbu.ac.ir/article_87116.html},
urldate = {2023-05-29},
langid = {english}
}
@online{grovAutomatedProofStrategy,
title = {Towards {{Automated Proof Strategy Generalisation}}},
author = {Grov, Gudmond and Maclean, Ewan},
abstract = {The ability to automatically generalise (interactive) proofs and use such generalisations to dis- charge related conjectures is a very hard problem which remains unsolved; this paper shows how we hope to make a start on solving this problem. We develop a notion of goal types to capture key prop- erties of goals, which enables abstractions over the specific order and number of sub-goals arising when composing tactics. We show that the goal types form a lattice, and utilise this property in the techniques we develop to automatically generalise proof strategies in order to reuse it for proofs of related conjectures. We illustrate our approach with an example.},
pubstate = {prepublished}
}
@online{grovAutomatedProofStrategy2013,
title = {Towards {{Automated Proof Strategy Generalisation}}},
author = {Grov, Gudmund and Maclean, Ewen},
date = {2013-06-09},
eprint = {1303.2975},
eprinttype = {arXiv},
eprintclass = {cs},
url = {http://arxiv.org/abs/1303.2975},
urldate = {2023-04-24},
abstract = {The ability to automatically generalise (interactive) proofs and use such generalisations to discharge related conjectures is a very hard problem which remains unsolved. Here, we develop a notion of goal types to capture key properties of goals, which enables abstractions over the specific order and number of sub-goals arising when composing tactics. We show that the goal types form a lattice, and utilise this property in the techniques we develop to automatically generalise proof strategies in order to reuse it for proofs of related conjectures. We illustrate our approach with an example.},
pubstate = {prepublished},
keywords = {Computer Science - Artificial Intelligence,Computer Science - Logic in Computer Science},
file = {/home/patrick/Zotero/storage/WXV3T6G9/Grov and Maclean - 2013 - Towards Automated Proof Strategy Generalisation.pdf;/home/patrick/Zotero/storage/NTTELC7U/1303.html}
}
@incollection{grovGraphicalLanguageProof2013,
title = {A {{Graphical Language}} for {{Proof Strategies}}},
booktitle = {Logic for {{Programming}}, {{Artificial Intelligence}}, and {{Reasoning}}},
author = {Grov, Gudmund and Kissinger, Aleks and Lin, Yuhui},
editor = {McMillan, Ken and Middeldorp, Aart and Voronkov, Andrei},
editora = {Hutchison, David and Kanade, Takeo and Kittler, Josef and Kleinberg, Jon M. and Mattern, Friedemann and Mitchell, John C. and Naor, Moni and Nierstrasz, Oscar and Pandu Rangan, C. and Steffen, Bernhard and Sudan, Madhu and Terzopoulos, Demetri and Tygar, Doug and Vardi, Moshe Y. and Weikum, Gerhard},
editoratype = {redactor},
date = {2013},
volume = {8312},
pages = {324--339},
publisher = {Springer Berlin Heidelberg},
location = {Berlin, Heidelberg},
doi = {10.1007/978-3-642-45221-5_23},
url = {http://link.springer.com/10.1007/978-3-642-45221-5_23},
urldate = {2023-04-24},
isbn = {978-3-642-45220-8},
file = {/home/patrick/Zotero/storage/JMAN829N/Grov et al. - 2013 - A Graphical Language for Proof Strategies.pdf}
}
@inproceedings{grovTypedMetainterpretiveLearning,
title = {Typed Meta-Interpretive Learning for Proof Strategies},
author = {Grov, Gudmond and Farquhar, Colin and Cropper, Andrew and Muggleton, Stephen and Bundy, Alan},
pages = {17--32},
location = {Kyoto, Japan},
doi = {10.1007/978-3-319-40566-7},
abstract = {Formal verification is increasingly used in industry. A pop- ular technique is interactive theorem proving, used for instance by Intel in HOL light. The ability to learn and re-apply proof strategies from a small set of proofs would significantly increase the productivity of these systems, and make them more cost-effective to use. Previous learning at- tempts have had limited success, which we believe is a result of missing key goal properties in the strategies. Capturing such properties will re- quire predicate invention, and the only technique we are familiar which supports this is meta-interpretive learning (MIL). We show that MIL is applicable to this problem, but that without type information it of- fers limited improvements in quality over previous work. We then extend MIL with types and give preliminary results indicating that this exten- sion learns better-quality strategies with suitable goal properties.},
eventtitle = {25th {{Annual Conference}} on {{Inductive Logic Programming}}},
isbn = {978-3-319-40566-7},
langid = {english}
}
@article{hebertWeakReflectionsWeak2011,
title = {Weak {{Reflections}} and {{Weak Factorization Systems}}},
author = {Hébert, Michel},
date = {2011-02},
journaltitle = {Applied Categorical Structures},
shortjournal = {Appl Categor Struct},
volume = {19},
number = {1},
pages = {9--38},
issn = {0927-2852, 1572-9095},
doi = {10.1007/s10485-008-9164-1},
url = {http://link.springer.com/10.1007/s10485-008-9164-1},
urldate = {2023-05-29},
langid = {english}
}
@incollection{herasML4PGComputerAlgebra2013,
title = {{{ML4PG}} in {{Computer Algebra Verification}}},
booktitle = {Intelligent {{Computer Mathematics}}},
author = {Heras, Jónathan and Komendantskaya, Ekaterina},
editor = {Carette, Jacques and Aspinall, David and Lange, Christoph and Sojka, Petr and Windsteiger, Wolfgang},
editora = {Hutchison, David and Kanade, Takeo and Kittler, Josef and Kleinberg, Jon M. and Mattern, Friedemann and Mitchell, John C. and Naor, Moni and Nierstrasz, Oscar and Pandu Rangan, C. and Steffen, Bernhard and Sudan, Madhu and Terzopoulos, Demetri and Tygar, Doug and Vardi, Moshe Y. and Weikum, Gerhard},
editoratype = {redactor},
date = {2013},
volume = {7961},
pages = {354--358},
publisher = {Springer Berlin Heidelberg},
location = {Berlin, Heidelberg},
doi = {10.1007/978-3-642-39320-4_28},
url = {http://link.springer.com/10.1007/978-3-642-39320-4_28},
urldate = {2023-04-24},
isbn = {978-3-642-39320-4},
file = {/home/patrick/Zotero/storage/F6MZXTTF/Heras and Komendantskaya - 2013 - ML4PG in Computer Algebra Verification.pdf}
}
@incollection{herasProofPatternRecognitionLemma2013,
title = {Proof-{{Pattern Recognition}} and {{Lemma Discovery}} in {{ACL2}}},
booktitle = {Logic for {{Programming}}, {{Artificial Intelligence}}, and {{Reasoning}}},
author = {Heras, Jónathan and Komendantskaya, Ekaterina and Johansson, Moa and Maclean, Ewen},
editor = {McMillan, Ken and Middeldorp, Aart and Voronkov, Andrei},
editora = {Hutchison, David and Kanade, Takeo and Kittler, Josef and Kleinberg, Jon M. and Mattern, Friedemann and Mitchell, John C. and Naor, Moni and Nierstrasz, Oscar and Pandu Rangan, C. and Steffen, Bernhard and Sudan, Madhu and Terzopoulos, Demetri and Tygar, Doug and Vardi, Moshe Y. and Weikum, Gerhard},
editoratype = {redactor},
date = {2013},
volume = {8312},
pages = {389--406},
publisher = {Springer Berlin Heidelberg},
location = {Berlin, Heidelberg},
doi = {10.1007/978-3-642-45221-5_27},
url = {http://link.springer.com/10.1007/978-3-642-45221-5_27},
urldate = {2023-04-24},
isbn = {978-3-642-45221-5},
file = {/home/patrick/Zotero/storage/T2RIIQBM/Heras et al. - 2013 - Proof-Pattern Recognition and Lemma Discovery in A.pdf}
}
@online{herasProofPatternSearch2014,
title = {Proof {{Pattern Search}} in {{Coq}}/{{SSReflect}}},
author = {Heras, Jónathan and Komendantskaya, Ekaterina},
date = {2014-02-01},
eprint = {1402.0081},
eprinttype = {arXiv},
eprintclass = {cs},
url = {http://arxiv.org/abs/1402.0081},
urldate = {2023-04-24},
abstract = {ML4PG is an extension of the Proof General interface, allowing the user to invoke machine-learning algorithms and find proof similarities in Coq/SSReect libraries. In this paper, we present three new improvements to ML4PG. First, a new method of "recurrent clustering" is introduced to collect statistical features from Coq terms. Now the user can receive suggestions about similar definitions, types and lemma statements, in addition to proof strategies. Second, Coq proofs are split into patches to capture proof strategies that could arise at different stages of a proof. Finally, we improve ML4PG's output introducing an automaton-shape representation for proof patterns.},
pubstate = {prepublished},
keywords = {Computer Science - Logic in Computer Science},
file = {/home/patrick/Zotero/storage/5BKL67CC/Heras and Komendantskaya - 2014 - Proof Pattern Search in CoqSSReflect.pdf;/home/patrick/Zotero/storage/GZHGRJEL/1402.html}
}
@article{herasRecyclingProofPatterns2014,
title = {Recycling {{Proof Patterns}} in {{Coq}}: {{Case Studies}}},
shorttitle = {Recycling {{Proof Patterns}} in {{Coq}}},
author = {Heras, Jónathan and Komendantskaya, Ekaterina},
date = {2014-03},
journaltitle = {Mathematics in Computer Science},
shortjournal = {Math.Comput.Sci.},
volume = {8},
number = {1},
pages = {99--116},
issn = {1661-8270, 1661-8289},
doi = {10.1007/s11786-014-0173-1},
url = {http://link.springer.com/10.1007/s11786-014-0173-1},
urldate = {2023-04-24},
langid = {english},
file = {/home/patrick/Zotero/storage/ICVC7Y8P/Heras and Komendantskaya - 2014 - Recycling Proof Patterns in Coq Case Studies.pdf}
}
@online{herasStatisticalProofPattern2013,
title = {Statistical {{Proof Pattern Recognition}}: {{Automated}} or {{Interactive}}?},
shorttitle = {Statistical {{Proof Pattern Recognition}}},
author = {Heras, Jónathan and Komendantskaya, Ekaterina},
date = {2013-03-05},
eprint = {1303.1419},
eprinttype = {arXiv},
eprintclass = {cs},
url = {http://arxiv.org/abs/1303.1419},
urldate = {2023-04-24},
abstract = {In this paper, we compare different existing approaches employed in data mining of big proof libraries in automated and interactive theorem proving.},
pubstate = {prepublished},
keywords = {Computer Science - Logic in Computer Science,Computer Science - Software Engineering},
file = {/home/patrick/Zotero/storage/TI8QFFWG/Heras and Komendantskaya - 2013 - Statistical Proof Pattern Recognition Automated o.pdf;/home/patrick/Zotero/storage/IPZKQB9D/1303.html}
}
@article{hermidaPropertiesFibFibred1999,
title = {Some Properties of {{Fib}} as a Fibred 2-Category},
author = {Hermida, Claudio},
date = {1999-01},
journaltitle = {Journal of Pure and Applied Algebra},
shortjournal = {Journal of Pure and Applied Algebra},
volume = {134},
number = {1},
pages = {83--109},
issn = {00224049},
doi = {10.1016/S0022-4049(97)00129-1},
url = {https://linkinghub.elsevier.com/retrieve/pii/S0022404997001291},
urldate = {2023-10-05},
langid = {english}
}
@book{hirschhornModelCategoriesTheir2003,
title = {Model Categories and Their Localizations},
author = {Hirschhorn, Philip S.},
date = {2003},
series = {Mathematical Surveys and Monographs},
number = {v. 99},
publisher = {American Mathematical Society},
location = {Providence, RI},
isbn = {978-0-8218-3279-0},
pagetotal = {457},
keywords = {Homotopy theory,Model categories (Mathematics)}
}
@book{hoveyModelCategories1999,
title = {Model Categories},
author = {Hovey, Mark},
date = {1999},
series = {Mathematical Surveys and Monographs},
number = {v. 63},
publisher = {American Mathematical Society},
location = {Providence, R.I},
isbn = {978-0-8218-1359-1},
pagetotal = {209},
keywords = {Complexes,Homotopy theory,Model categories (Mathematics)}
}
@book{inoueInductiveLogicProgramming2016,
title = {Inductive {{Logic Programming}}: 25th {{International Conference}}, {{ILP}} 2015, {{Kyoto}}, {{Japan}}, {{August}} 20-22, 2015, {{Revised Selected Papers}}},
shorttitle = {Inductive {{Logic Programming}}},
editor = {Inoue, Katsumi and Ohwada, Hayato and Yamamoto, Akihiro},
date = {2016},
series = {Lecture {{Notes}} in {{Artificial Intelligence}}},
edition = {1st ed. 2016},
number = {9575},
publisher = {Springer International Publishing : Imprint: Springer},
location = {Cham},
doi = {10.1007/978-3-319-40566-7},
abstract = {This book constitutes the thoroughly refereed post-conference proceedings of the 25th International Conference on Inductive Logic Programming, ILP 2015, held in Kyoto, Japan, in August 2015. The 14 revised papers presented were carefully reviewed and selected from 44 submissions. The papers focus on topics such as theories, algorithms, representations and languages, systems and applications of ILP, and cover all areas of learning in logic, relational learning, relational data mining, statistical relational learning, multi-relational data mining, relational reinforcement learning, graph mining, connections with other learning paradigms, among others},
isbn = {978-3-319-40566-7},
pagetotal = {1},
keywords = {Artificial intelligence,Artificial Intelligence,Computer logic,Computer programming,Data mining,Data Mining and Knowledge Discovery,Logics and Meanings of Programs,Mathematical logic,Mathematical Logic and Formal Languages,Programming Techniques},
file = {/home/patrick/Zotero/storage/DGCQQJ63/Inoue et al. - 2016 - Inductive Logic Programming 25th International Co.pdf}
}
@book{jacobsCategoricalLogicType,
title = {Categorical {{Logic}} and {{Type Theory}}},
author = {Jacobs, Bart},
series = {Studies in {{Logic}} and the {{Foundations}} of {{Mathematics}}},
volume = {141},
publisher = {Elsevier},
isbn = {0 444 50170 3}
}
@article{jacobsSemanticsWeakeningContraction1994,
title = {Semantics of Weakening and Contraction},
author = {Jacobs, Bart},
date = {1994-09},
journaltitle = {Annals of Pure and Applied Logic},
shortjournal = {Annals of Pure and Applied Logic},
volume = {69},
number = {1},
pages = {73--106},
issn = {01680072},
doi = {10.1016/0168-0072(94)90020-5},
url = {https://linkinghub.elsevier.com/retrieve/pii/0168007294900205},
urldate = {2023-02-18},
langid = {english},
file = {/home/patrick/Zotero/storage/XMETGDNB/Jacobs - 1994 - Semantics of weakening and contraction.pdf}
}
@book{jamesHandbookAlgebraicTopology1995,
title = {Handbook of Algebraic Topology},
editor = {James, I. M.},
date = {1995},
publisher = {Elsevier Science B.V},
location = {Amsterdam ; New York},
isbn = {978-0-444-81779-2},
pagetotal = {1324},
keywords = {Algebraic topology}
}
@article{jamnikAutomaticLearningProof2003,
title = {Automatic {{Learning}} of {{Proof Methods}} in {{Proof Planning}}},
author = {Jamnik, M.},
date = {2003-11-01},
journaltitle = {Logic Journal of IGPL},
shortjournal = {Logic Journal of IGPL},
volume = {11},
number = {6},
pages = {647--673},
issn = {1367-0751, 1368-9894},
doi = {10.1093/jigpal/11.6.647},
url = {https://academic.oup.com/jigpal/article-lookup/doi/10.1093/jigpal/11.6.647},
urldate = {2023-04-24},
langid = {english}
}
@book{johnson2dimensionalCategories2021,
title = {2-Dimensional Categories},
author = {Johnson, Niles and Yau, Donald Y.},
date = {2021},
edition = {First edition},
publisher = {Oxford University Press},
location = {Oxford, United Kingdom ; New York, NY},
abstract = {2--Dimensional Categories provides an introduction to 2-categories and bicategories, assuming only the most elementary aspects of category theory. A review of basic category theory is followed by a systematic discussion of 2-/bicategories; pasting diagrams; lax functors; 2-/bilimits; the Duskin nerve; the 2-nerve; internal adjunctions; monads in bicategories; 2-monads; biequivalences; the Bicategorical Yoneda Lemma; and the Coherence Theorem for bicategories. Grothendieck fibrations and the Grothendieck construction are discussed next, followed by tricategories, monoidal bicategories, the Gray tensor product, and double categories. Completely detailed proofs of several fundamental but hard-to-find results are presented for the first time. With exercises and plenty of motivation and explanation, this book is useful for both beginners and experts.--},
isbn = {978-0-19-887137-8},
pagetotal = {615},
keywords = {Categories (Mathematics)},
annotation = {OCLC: on1198975671}
}
@inproceedings{kammarAlgebraicFoundationsEffectdependent2012,
title = {Algebraic Foundations for Effect-Dependent Optimisations},
booktitle = {Proceedings of the 39th Annual {{ACM SIGPLAN-SIGACT}} Symposium on {{Principles}} of Programming Languages},
author = {Kammar, Ohad and Plotkin, Gordon D.},
date = {2012-01-25},
pages = {349--360},
publisher = {ACM},
location = {Philadelphia PA USA},
doi = {10.1145/2103656.2103698},
url = {https://dl.acm.org/doi/10.1145/2103656.2103698},
urldate = {2023-02-18},
eventtitle = {{{POPL}} '12: {{The}} 39th {{Annual ACM SIGPLAN-SIGACT Symposium}} on {{Principles}} of {{Programming Languages}}},
isbn = {978-1-4503-1083-3},
langid = {english}
}
@thesis{kammarAlgebraicTheoryTypeandEffect2014,
title = {An {{Algebraic Theory}} of {{Type-and-Effect Systems}}},
author = {Kammar, Ohad},
date = {2014},
institution = {University of Oxford},
url = {http://www.cs.ox.ac.uk/people/ohad.kammar/thesis/},
abstract = {We present a general semantic account of Gifford-style type-and-effect systems. These type systems provide lightweight static analyses annotating program phrases with the sets of possible computational effects they may cause, such as memory access and modification, exception raising, and non-deterministic choice. The analyses are used, for example, to justify the program transformations typically used in optimising com- pilers, such as code reordering and inlining. Despite their existence for over two decades, there is no prior comprehensive theory of type-and-effect systems accounting for their syntax and semantics, and justifying their use in effect-dependent program transformation. We achieve this generality by recourse to the theory of algebraic effects, a de- velopment of Moggi’s monadic theory of computational effects that emphasises the operations causing the effects at hand and their equational theory. The key observation is that annotation effects can be identified with the effect operations. Our first main contribution is the uniform construction of semantic models for type- and-effect analysis by a process we call conservative restriction. Our construction re- quires an algebraic model of the unannotated programming language and a relevant notion of predicate. It then generates a model for Gifford-style type-and-effect anal- ysis. This uniform construction subsumes existing ad-hoc models for type-and-effect systems, and is applicable in all cases in which the semantics can be given via enriched Lawvere theories. Our second main contribution is a demonstration that our theory accounts for the various aspects of Gifford-style effect systems. We begin with a version of Levy’s Call- by-push-value that includes algebraic effects. We add effect annotations, and design a general type-and-effect system for such call-by-push-value variants. The annotated language can be thought of as an intermediate representation used for program optimi- sation. We relate the unannotated semantics to the conservative restriction semantics, and establish the soundness of program transformations based on this effect analysis. We develop and classify a range of validated transformations, generalising many ex- isting ones and adding some new ones. We also give modularly-checkable sufficient conditions for the validity of these optimisations. In the final part of this thesis, we demonstrate our theory by analysing a simple example language involving global state with multiple regions, exceptions, and non- determinism. We give decision procedures for the applicability of the various effect- dependent transformations, and establish their soundness and completeness.},
langid = {english},
pagetotal = {342}
}
@book{kirchnerAutomatedDeductionCADE151998,
title = {Automated Deduction, {{CADE-15}}: 15th {{International Conference}} on {{Automated Deduction}}, {{Lindau}}, {{Germany}}, {{July}} 5-10, 1998: Proceedings},
shorttitle = {Automated Deduction, {{CADE-15}}},
editor = {Kirchner, Claude and Kirchner, H.},
date = {1998},
series = {Lecture Notes in Computer Science},
number = {1421. Lecture notes in artificial intelligence},
publisher = {Springer},
location = {Berlin ; New York},
eventtitle = {International {{Conference}} on {{Automated Deduction}}},
isbn = {978-3-540-64675-4},
pagetotal = {441},
keywords = {Automatic theorem proving,Congresses,Logic Symbolic and mathematical}
}
@article{kleisliConstructionStandardComplexes1974,
title = {On the Construction of Standard Complexes},
author = {Kleisli, Heinrich},
date = {1974-06},
journaltitle = {Journal of Pure and Applied Algebra},
shortjournal = {Journal of Pure and Applied Algebra},
volume = {4},
number = {3},
pages = {243--260},
issn = {00224049},
doi = {10.1016/0022-4049(74)90005-X},
url = {https://linkinghub.elsevier.com/retrieve/pii/002240497490005X},
urldate = {2023-06-25},
langid = {english}
}
@article{kleisliConstructionStandardComplexes1974a,
title = {On the Construction of Standard Complexes},
author = {Kleisli, Heinrich},
date = {1974},
journaltitle = {Journal of Pure and Applied Algebra},
volume = {4},
pages = {243--260},
abstract = {By a standard complex we understand a complex of the following type: the complex first used by Eilenberg and ,MacLa.ne to define the cohomology of groups; the complex first used by Hochschild to defme the cohomology of an associative al- gebra (cf. [6] or [IO) ); the complexes introduced by And\& Barr and Beck in [ 1, 4.5). N those complexes are constructed according to a common pattern. We start with the foBowing data: A cotriple (comonad) C in a category A (which can be chosen to be small) and a set- or group-valued functor F on A. There is simplicial objet t X\_ = (X, , d’), a o ( where we drop the degeneracy operators) in the functor category AA, which is obtained from c by a standard construction due to Godement (cf. [ 8, appendice) ). Composing X. with the functor F we obtain a simplicial object FX\_ = (FX,, Fdi),ro in the functor category Ed or A@. in the latter case one usually considers the associated chain complex (and if the degeneracy operators are brought dong, sometimes its normalization), The resulting functorial complex is what we call a star\&ant txmpl\textasciitilde x. The aim of this paper is to construct standard complexes which are (homotopy) equivaien t to classical geometric complexes by using some simple arguments of ca- tegorical algebra. Moreover, we want to s!tow that the introduction of such standard complexes is useful by giving a few immediate applications leading in a natural way to classical results such as t.hlr: topologic4 iinvariance or’ simplicial homology for poly- hedra and de Rham’s theorem. I am indepted to Michael Barr and to Claude Auderset for many conversations which gave the paper its present form. The former pointed out to me the preprint of a paper by Rinehart [ B 21 in which singular and simplicial homology are treated as satellites relative to a pro,jective class, a paper which shaped the choice of the ap- plications presented here. He also knew of the cotriple E of Section 5 (without the help of Theorem 3.3). The latter observed that the double complexes in Sections 7 and \$ hapi-en to be isomorphic to the double complexes used by Weil in a classical proof of Leray’s theorem and of de Rham’s theorem (cf. f IS] ). It should be men- tioned, however, that our proofs are different from those of Weil insofar as we do not need to know the explicit form of those double complexes.}
}
@article{kleisliEveryStandardConstruction1965,
title = {Every Standard Construction Is Induced by a Pair of Adjoint Functors},
author = {Kleisli, H.},
date = {1965},
journaltitle = {Proceedings of the American Mathematical Society},
shortjournal = {Proc. Amer. Math. Soc.},
volume = {16},
number = {3},
pages = {544--546},