-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path100_related-properties.sql
More file actions
365 lines (365 loc) · 15 KB
/
100_related-properties.sql
File metadata and controls
365 lines (365 loc) · 15 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
INSERT INTO related_properties (property_id, related_property_id)
VALUES
('small', 'essentially small'),
('small', 'locally small'),
('locally small', 'small'),
('locally small', 'locally essentially small'),
('locally essentially small', 'locally small'),
('essentially small', 'small'),
('essentially small', 'locally essentially small'),
('cartesian closed', 'finite products'),
('cartesian closed', 'locally cartesian closed'),
('cocartesian coclosed', 'finite coproducts'),
('cocartesian coclosed', 'locally cocartesian coclosed'),
('locally cartesian closed', 'cartesian closed'),
('locally cocartesian coclosed', 'cocartesian coclosed'),
('zero morphisms', 'preadditive'),
('zero morphisms', 'pointed'),
('preadditive', 'additive'),
('additive', 'preadditive'),
('additive', 'finite products'),
('additive', 'finite coproducts'),
('additive', 'biproducts'),
('biproducts', 'zero morphisms'),
('biproducts', 'finite products'),
('biproducts', 'finite coproducts'),
('abelian', 'additive'),
('abelian', 'kernels'),
('abelian', 'cokernels'),
('abelian', 'normal'),
('abelian', 'conormal'),
('finitely complete', 'complete'),
('finitely complete', 'finite products'),
('finitely complete', 'equalizers'),
('finitely cocomplete', 'cocomplete'),
('finitely cocomplete', 'finite coproducts'),
('finitely cocomplete', 'coequalizers'),
('pointed', 'initial object'),
('pointed', 'terminal object'),
('locally finitely presentable', 'cocomplete'),
('locally finitely presentable', 'locally presentable'),
('locally finitely presentable', 'locally strongly finitely presentable'),
('locally finitely presentable', 'locally ℵ₁-presentable'),
('locally finitely presentable', 'finitely accessible'),
('locally finitely presentable', 'locally finitely multi-presentable'),
('locally strongly finitely presentable', 'locally finitely presentable'),
('locally strongly finitely presentable', 'multi-algebraic'),
('locally strongly finitely presentable', 'generalized variety'),
('locally presentable', 'cocomplete'),
('locally presentable', 'locally finitely presentable'),
('locally presentable', 'locally ℵ₁-presentable'),
('locally presentable', 'accessible'),
('locally presentable', 'locally multi-presentable'),
('locally presentable', 'locally poly-presentable'),
('locally ℵ₁-presentable', 'cocomplete'),
('locally ℵ₁-presentable', 'locally finitely presentable'),
('locally ℵ₁-presentable', 'locally presentable'),
('locally ℵ₁-presentable', 'ℵ₁-accessible'),
('elementary topos', 'Grothendieck topos'),
('elementary topos', 'cartesian closed'),
('elementary topos', 'finitely complete'),
('elementary topos', 'subobject classifier'),
('elementary topos', 'natural numbers object'),
('Grothendieck topos', 'elementary topos'),
('natural numbers object', 'elementary topos'),
('natural numbers object', 'finite products'),
('initial object', 'finite coproducts'),
('initial object', 'multi-initial object'),
('terminal object', 'finite products'),
('terminal object', 'multi-terminal object'),
('complete', 'equalizers'),
('complete', 'products'),
('complete', 'multi-complete'),
('equalizers', 'finitely complete'),
('equalizers', 'coreflexive equalizers'),
('equalizers', 'kernels'),
('coequalizers', 'finitely cocomplete'),
('coequalizers', 'reflexive coequalizers'),
('coequalizers', 'cokernels'),
('kernels', 'zero morphisms'),
('kernels', 'equalizers'),
('kernels', 'normal'),
('cokernels', 'zero morphisms'),
('cokernels', 'coequalizers'),
('cokernels', 'conormal'),
('cocomplete', 'coequalizers'),
('cocomplete', 'coproducts'),
('cocomplete', 'multi-cocomplete'),
('products', 'complete'),
('products', 'finite products'),
('products', 'powers'),
('coproducts', 'cocomplete'),
('coproducts', 'finite coproducts'),
('coproducts', 'copowers'),
('finite products', 'products'),
('finite products', 'finite powers'),
('finite products', 'binary products'),
('finite products', 'terminal object'),
('finite coproducts', 'coproducts'),
('finite coproducts', 'binary coproducts'),
('finite coproducts', 'initial object'),
('finite coproducts', 'finite copowers'),
('binary products', 'finite products'),
('binary products', 'binary powers'),
('binary coproducts', 'finite coproducts'),
('binary coproducts', 'binary copowers'),
('countable products', 'products'),
('countable products', 'finite products'),
('countable products', 'countable powers'),
('countable coproducts', 'coproducts'),
('countable coproducts', 'finite coproducts'),
('countable coproducts', 'countable copowers'),
('cofiltered limits', 'cofiltered'),
('cofiltered limits', 'complete'),
('cofiltered limits', 'directed limits'),
('cofiltered limits', 'cosifted limits'),
('filtered colimits', 'filtered'),
('filtered colimits', 'cocomplete'),
('filtered colimits', 'directed colimits'),
('filtered colimits', 'sifted colimits'),
('directed limits', 'cofiltered limits'),
('directed limits', 'complete'),
('directed colimits', 'filtered colimits'),
('directed colimits', 'cocomplete'),
('sequential limits', 'directed limits'),
('sequential colimits', 'directed colimits'),
('cogenerator', 'cogenerating set'),
('cogenerating set', 'cogenerator'),
('connected limits', 'connected'),
('connected limits', 'complete'),
('connected limits', 'cofiltered limits'),
('connected colimits', 'connected'),
('connected colimits', 'cocomplete'),
('connected colimits', 'filtered colimits'),
('strict initial object', 'initial object'),
('strict terminal object', 'terminal object'),
('discrete', 'essentially discrete'),
('essentially discrete', 'discrete'),
('finite', 'essentially finite'),
('finite', 'small'),
('finite', 'countable'),
('essentially finite', 'finite'),
('essentially finite', 'essentially small'),
('essentially finite', 'essentially countable'),
('countable', 'essentially countable'),
('countable', 'finite'),
('essentially countable', 'countable'),
('essentially countable', 'essentially finite'),
('pullbacks', 'wide pullbacks'),
('pullbacks', 'binary products'),
('pushouts', 'wide pushouts'),
('pushouts', 'binary coproducts'),
('subobject classifier', 'elementary topos'),
('subobject classifier', 'finitely complete'),
('subobject classifier', 'regular subobject classifier'),
('regular subobject classifier', 'subobject classifier'),
('regular subobject classifier', 'finitely complete'),
('quotient object classifier', 'finitely cocomplete'),
('quotient object classifier', 'regular quotient object classifier'),
('regular quotient object classifier', 'quotient object classifier'),
('regular quotient object classifier', 'finitely cocomplete'),
('distributive', 'infinitary distributive'),
('distributive', 'countably distributive'),
('distributive', 'finite products'),
('distributive', 'finite coproducts'),
('countably distributive', 'distributive'),
('countably distributive', 'infinitary distributive'),
('countably distributive', 'finite products'),
('countably distributive', 'countable coproducts'),
('infinitary distributive', 'distributive'),
('infinitary distributive', 'countably distributive'),
('infinitary distributive', 'finite products'),
('infinitary distributive', 'coproducts'),
('codistributive', 'infinitary codistributive'),
('codistributive', 'countably codistributive'),
('codistributive', 'finite products'),
('codistributive', 'finite coproducts'),
('countably codistributive', 'codistributive'),
('countably codistributive', 'infinitary codistributive'),
('countably codistributive', 'finite coproducts'),
('countably codistributive', 'countable products'),
('infinitary codistributive', 'codistributive'),
('infinitary codistributive', 'countably codistributive'),
('infinitary codistributive', 'finite coproducts'),
('infinitary codistributive', 'products'),
('exact filtered colimits', 'filtered colimits'),
('exact filtered colimits', 'finitely complete'),
('exact filtered colimits', 'cartesian filtered colimits'),
('exact cofiltered limits', 'cofiltered limits'),
('exact cofiltered limits', 'finitely cocomplete'),
('exact cofiltered limits', 'cocartesian cofiltered limits'),
('exact cofiltered limits', 'cofiltered-limit-stable epimorphisms'),
('cartesian filtered colimits', 'filtered colimits'),
('cartesian filtered colimits', 'finite products'),
('cartesian filtered colimits', 'exact filtered colimits'),
('cocartesian cofiltered limits', 'cofiltered limits'),
('cocartesian cofiltered limits', 'finite coproducts'),
('cocartesian cofiltered limits', 'exact cofiltered limits'),
('filtered-colimit-stable monomorphisms', 'exact filtered colimits'),
('filtered-colimit-stable monomorphisms', 'filtered colimits'),
('cofiltered-limit-stable epimorphisms', 'exact cofiltered limits'),
('cofiltered-limit-stable epimorphisms', 'cofiltered limits'),
('generator', 'generating set'),
('generating set', 'generator'),
('Grothendieck abelian', 'abelian'),
('Grothendieck abelian', 'cocomplete'),
('Grothendieck abelian', 'generator'),
('Grothendieck abelian', 'exact filtered colimits'),
('disjoint finite coproducts', 'finite coproducts'),
('disjoint finite coproducts', 'disjoint coproducts'),
('disjoint finite coproducts', 'extensive'),
('disjoint coproducts', 'coproducts'),
('disjoint coproducts', 'disjoint finite coproducts'),
('disjoint coproducts', 'infinitary extensive'),
('disjoint finite products', 'finite products'),
('disjoint finite products', 'disjoint products'),
('disjoint finite products', 'coextensive'),
('disjoint products', 'products'),
('disjoint products', 'disjoint finite products'),
('disjoint products', 'infinitary coextensive'),
('left cancellative', 'groupoid'),
('right cancellative', 'groupoid'),
('groupoid', 'left cancellative'),
('groupoid', 'right cancellative'),
('wide pullbacks', 'pullbacks'),
('wide pushouts', 'pushouts'),
('split abelian', 'abelian'),
('Cauchy complete', 'finitely complete'),
('Malcev', 'finitely complete'),
('co-Malcev', 'finitely cocomplete'),
('connected', 'semi-strongly connected'),
('connected', 'strongly connected'),
('connected', 'inhabited'),
('semi-strongly connected', 'connected'),
('semi-strongly connected', 'strongly connected'),
('semi-strongly connected', 'inhabited'),
('strongly connected', 'connected'),
('strongly connected', 'semi-strongly connected'),
('strongly connected', 'inhabited'),
('regular', 'finitely complete'),
('coregular', 'finitely cocomplete'),
('extensive', 'infinitary extensive'),
('extensive', 'finite coproducts'),
('extensive', 'disjoint finite coproducts'),
('infinitary extensive', 'extensive'),
('infinitary extensive', 'coproducts'),
('infinitary extensive', 'disjoint coproducts'),
('coextensive', 'infinitary coextensive'),
('coextensive', 'finite products'),
('coextensive', 'disjoint finite products'),
('infinitary coextensive', 'coextensive'),
('infinitary coextensive', 'products'),
('infinitary coextensive', 'disjoint products'),
('well-powered', 'small'),
('well-copowered', 'small'),
('unital', 'finitely complete'),
('unital', 'pointed'),
('unital', 'Malcev'),
('counital', 'finitely cocomplete'),
('counital', 'pointed'),
('counital', 'co-Malcev'),
('cosifted limits', 'complete'),
('cosifted limits', 'cofiltered limits'),
('cosifted limits', 'coreflexive equalizers'),
('cosifted limits', 'cosifted'),
('sifted colimits', 'cocomplete'),
('sifted colimits', 'filtered colimits'),
('sifted colimits', 'reflexive coequalizers'),
('sifted colimits', 'sifted'),
('sifted', 'sifted colimits'),
('sifted', 'filtered'),
('sifted', 'connected'),
('cosifted', 'cosifted limits'),
('cosifted', 'connected'),
('cosifted', 'cofiltered'),
('coreflexive equalizers', 'equalizers'),
('coreflexive equalizers', 'cosifted limits'),
('reflexive coequalizers', 'coequalizers'),
('reflexive coequalizers', 'sifted colimits'),
('direct', 'one-way'),
('direct', 'skeletal'),
('inverse', 'one-way'),
('inverse', 'skeletal'),
('one-way', 'direct'),
('one-way', 'inverse'),
('powers', 'products'),
('powers', 'countable powers'),
('powers', 'finite powers'),
('countable powers', 'countable products'),
('countable powers', 'powers'),
('countable powers', 'finite powers'),
('finite powers', 'finite products'),
('finite powers', 'powers'),
('finite powers', 'countable powers'),
('finite powers', 'binary powers'),
('copowers', 'coproducts'),
('copowers', 'countable copowers'),
('copowers', 'finite copowers'),
('countable copowers', 'countable coproducts'),
('countable copowers', 'copowers'),
('countable copowers', 'finite copowers'),
('finite copowers', 'copowers'),
('finite copowers', 'finite coproducts'),
('finite copowers', 'countable copowers'),
('finite copowers', 'binary copowers'),
('binary powers', 'finite powers'),
('binary powers', 'finite products'),
('binary copowers', 'finite copowers'),
('binary copowers', 'finite coproducts'),
('filtered', 'finitely cocomplete'),
('filtered', 'filtered colimits'),
('cofiltered', 'finitely complete'),
('cofiltered', 'cofiltered limits'),
('mono-regular', 'normal'),
('epi-regular', 'conormal'),
('normal', 'zero morphisms'),
('normal', 'mono-regular'),
('normal', 'kernels'),
('conormal', 'zero morphisms'),
('conormal', 'epi-regular'),
('conormal', 'cokernels'),
('multi-complete', 'complete'),
('multi-complete', 'multi-terminal object'),
('multi-terminal object', 'multi-complete'),
('multi-terminal object', 'terminal object'),
('multi-cocomplete', 'cocomplete'),
('multi-cocomplete', 'multi-initial object'),
('multi-initial object', 'multi-cocomplete'),
('multi-initial object', 'initial object'),
('accessible', 'finitely accessible'),
('accessible', 'ℵ₁-accessible'),
('accessible', 'locally presentable'),
('accessible', 'locally multi-presentable'),
('accessible', 'locally poly-presentable'),
('ℵ₁-accessible', 'accessible'),
('ℵ₁-accessible', 'finitely accessible'),
('ℵ₁-accessible', 'locally ℵ₁-presentable'),
('finitely accessible', 'accessible'),
('finitely accessible', 'ℵ₁-accessible'),
('finitely accessible', 'locally finitely presentable'),
('finitely accessible', 'locally finitely multi-presentable'),
('finitely accessible', 'filtered colimits'),
('locally multi-presentable', 'locally finitely multi-presentable'),
('locally multi-presentable', 'locally presentable'),
('locally multi-presentable', 'locally poly-presentable'),
('locally multi-presentable', 'accessible'),
('locally multi-presentable', 'multi-cocomplete'),
('locally multi-presentable', 'connected limits'),
('locally finitely multi-presentable', 'locally multi-presentable'),
('locally finitely multi-presentable', 'finitely accessible'),
('locally finitely multi-presentable', 'filtered colimits'),
('locally finitely multi-presentable', 'multi-cocomplete'),
('locally finitely multi-presentable', 'connected limits'),
('locally finitely multi-presentable', 'multi-algebraic'),
('locally poly-presentable', 'locally presentable'),
('locally poly-presentable', 'locally multi-presentable'),
('locally poly-presentable', 'accessible'),
('locally poly-presentable', 'wide pullbacks'),
('multi-algebraic', 'locally finitely multi-presentable'),
('multi-algebraic', 'locally strongly finitely presentable'),
('multi-algebraic', 'generalized variety'),
('multi-algebraic', 'sifted colimits'),
('multi-algebraic', 'multi-cocomplete'),
('generalized variety', 'multi-algebraic'),
('generalized variety', 'locally strongly finitely presentable'),
('generalized variety', 'sifted colimits');