File tree Expand file tree Collapse file tree 4 files changed +68
-0
lines changed
Expand file tree Collapse file tree 4 files changed +68
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,26 @@ VALUES
3939 ' https://ncatlab.org/nlab/show/Banach+algebra' ,
4040 NULL
4141),
42+ (
43+ ' C*Alg_nu' ,
44+ ' category of non-unital C<sup>*</sup>-algebras' ,
45+ ' $\m athbf{C^*Alg}_{nu}$' ,
46+ ' non-unital C<sup>*</sup>-algebras' ,
47+ ' non-unital $*$-algebra homomorphisms' ,
48+ ' With "non-unital" we mean "not necessarily unital".' ,
49+ ' https://ncatlab.org/nlab/show/C-star-algebra' ,
50+ NULL
51+ ),
52+ (
53+ ' C*Alg_u' ,
54+ ' category of unital C<sup>*</sup>-algebras' ,
55+ ' $\m athbf{C^*Alg}_{u}$' ,
56+ ' unital C<sup>*</sup>-algebras' ,
57+ ' unital $*$-algebra homomorphisms' ,
58+ NULL ,
59+ ' https://ncatlab.org/nlab/show/C-star-algebra' ,
60+ NULL
61+ ),
4262(
4363 ' Meas' ,
4464 ' category of measurable spaces' ,
Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ VALUES
1919(' BanAlg_u' , ' CVNA' ),
2020(' BanAlg_u' , ' BanAlg_nu' ),
2121(' BanAlg_u' , ' Alg(R)' ),
22+ (' BanAlg_u' , ' C*Alg_u' ),
2223(' BanAlg_nu' , ' BanAlg_u' ),
2324(' BanAlg_nu' , ' Rng' ),
25+ (' BanAlg_nu' , ' C*Alg_nu' ),
2426(' B' , ' FS' ),
2527(' BG' , ' BG_f' ),
2628(' BG' , ' BN' ),
@@ -29,6 +31,12 @@ VALUES
2931(' BN' , ' BG' ),
3032(' BN' , ' BOn' ),
3133(' BOn' , ' BN' ),
34+ (' C*Alg_u' , ' C*Alg_nu' ),
35+ (' C*Alg_u' , ' BanAlg_u' ),
36+ (' C*Alg_u' , ' Alg(R)' ),
37+ (' C*Alg_nu' , ' C*Alg_u' ),
38+ (' C*Alg_nu' , ' BanAlg_nu' ),
39+ (' C*Alg_nu' , ' Rng' ),
3240(' CAlg(R)' , ' Alg(R)' ),
3341(' CAlg(R)' , ' CRing' ),
3442(' CAlg(R)' , ' R-Mod' ),
Original file line number Diff line number Diff line change 1+ INSERT INTO category_property_assignments (
2+ category_id,
3+ property_id,
4+ is_satisfied,
5+ reason
6+ )
7+ VALUES
8+ -- TODO: add properties here
9+ (
10+ ' C*Alg_nu' ,
11+ ' inhabited' ,
12+ TRUE,
13+ ' This is clear.'
14+ ),
15+ (
16+ ' C*Alg_nu' ,
17+ ' skeletal' ,
18+ FALSE,
19+ ' This is trivial.'
20+ );
Original file line number Diff line number Diff line change 1+ INSERT INTO category_property_assignments (
2+ category_id,
3+ property_id,
4+ is_satisfied,
5+ reason
6+ )
7+ VALUES
8+ -- TODO: add properties here
9+ (
10+ ' C*Alg_u' ,
11+ ' inhabited' ,
12+ TRUE,
13+ ' This is clear.'
14+ ),
15+ (
16+ ' C*Alg_u' ,
17+ ' skeletal' ,
18+ FALSE,
19+ ' This is trivial.'
20+ );
You can’t perform that action at this time.
0 commit comments