catlog/stdlib/
theories.rs1use ustr::ustr;
4
5use crate::dbl::theory::*;
6use crate::one::fin_category::{FinMor, UstrFinCategory};
7
8pub fn th_empty() -> UstrDiscreteDblTheory {
13 let cat: UstrFinCategory = Default::default();
14 DiscreteDblTheory::from(cat)
15}
16
17pub fn th_category() -> UstrDiscreteDblTheory {
22 let mut cat: UstrFinCategory = Default::default();
23 cat.add_ob_generator(ustr("Object"));
24 DiscreteDblTheory::from(cat)
25}
26
27pub fn th_schema() -> UstrDiscreteDblTheory {
32 let mut cat: UstrFinCategory = Default::default();
33 let (x, y, p) = (ustr("Entity"), ustr("AttrType"), ustr("Attr"));
34 cat.add_ob_generator(x);
35 cat.add_ob_generator(y);
36 cat.add_mor_generator(p, x, y);
37 DiscreteDblTheory::from(cat)
38}
39
40pub fn th_signed_category() -> UstrDiscreteDblTheory {
47 let mut sgn: UstrFinCategory = Default::default();
48 let (x, n) = (ustr("Object"), ustr("Negative"));
49 sgn.add_ob_generator(x);
50 sgn.add_mor_generator(n, x, x);
51 sgn.set_composite(n, n, FinMor::Id(x));
52 DiscreteDblTheory::from(sgn)
53}
54
55pub fn th_delayable_signed_category() -> UstrDiscreteDblTheory {
61 let mut cat: UstrFinCategory = Default::default();
62 let (x, neg) = (ustr("Object"), ustr("Negative"));
63 let (pos_slow, neg_slow) = (ustr("PositiveSlow"), ustr("NegativeSlow"));
64 cat.add_ob_generator(x);
65 cat.add_mor_generator(neg, x, x);
66 cat.add_mor_generator(pos_slow, x, x);
67 cat.add_mor_generator(neg_slow, x, x);
68 cat.set_composite(neg, neg, FinMor::Id(x));
69 cat.set_composite(neg, pos_slow, FinMor::Generator(neg_slow));
70 cat.set_composite(neg, neg_slow, FinMor::Generator(pos_slow));
71 cat.set_composite(pos_slow, neg, FinMor::Generator(neg_slow));
72 cat.set_composite(neg_slow, neg, FinMor::Generator(pos_slow));
73 cat.set_composite(pos_slow, pos_slow, FinMor::Generator(pos_slow));
74 cat.set_composite(neg_slow, neg_slow, FinMor::Generator(pos_slow));
75 cat.set_composite(neg_slow, pos_slow, FinMor::Generator(neg_slow));
76 cat.set_composite(pos_slow, neg_slow, FinMor::Generator(neg_slow));
77 DiscreteDblTheory::from(cat)
78}
79
80pub fn th_nullable_signed_category() -> UstrDiscreteDblTheory {
86 let mut sgn: UstrFinCategory = Default::default();
87 let (x, n, z) = (ustr("Object"), ustr("Negative"), ustr("Zero"));
88 sgn.add_ob_generator(x);
89 sgn.add_mor_generator(n, x, x);
90 sgn.add_mor_generator(z, x, x);
91 sgn.set_composite(n, n, FinMor::Id(x));
92 sgn.set_composite(z, z, FinMor::Generator(z));
93 sgn.set_composite(n, z, FinMor::Generator(z));
94 sgn.set_composite(z, n, FinMor::Generator(z));
95 DiscreteDblTheory::from(sgn)
96}
97
98pub fn th_category_with_scalars() -> UstrDiscreteDblTheory {
109 let mut idem: UstrFinCategory = Default::default();
110 let (x, s) = (ustr("Object"), ustr("Nonscalar"));
111 idem.add_ob_generator(x);
112 idem.add_mor_generator(s, x, x);
113 idem.set_composite(s, s, FinMor::Generator(s));
114 DiscreteDblTheory::from(idem)
115}
116
117pub fn th_category_links() -> UstrDiscreteTabTheory {
126 let mut th: UstrDiscreteTabTheory = Default::default();
127 let x = ustr("Object");
128 th.add_ob_type(x);
129 th.add_mor_type(
130 ustr("Link"),
131 TabObType::Basic(x),
132 th.tabulator(th.hom_type(TabObType::Basic(x))),
133 );
134 th
135}
136
137#[cfg(test)]
138mod tests {
139 use super::*;
140 use crate::validate::Validate;
141
142 #[test]
143 fn theories() {
144 assert!(th_empty().validate().is_ok());
145 assert!(th_category().validate().is_ok());
146 assert!(th_schema().validate().is_ok());
147 assert!(th_signed_category().validate().is_ok());
148 assert!(th_delayable_signed_category().validate().is_ok());
149 assert!(th_nullable_signed_category().validate().is_ok());
150 assert!(th_category_with_scalars().validate().is_ok());
151 th_category_links();
153 }
154}