Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
54e4d02
@over types
KevinDCarlson Apr 29, 2026
77b56db
Instance without specializations declares
KevinDCarlson Apr 29, 2026
27c738a
Diagrams in discrete theories declaring and validating, generating Di…
KevinDCarlson May 5, 2026
9d1aeb6
Add the test files
KevinDCarlson May 5, 2026
1b92d0c
missing commit
KevinDCarlson May 6, 2026
42a9b62
clippy
KevinDCarlson May 6, 2026
8f0a6f9
docs fix
KevinDCarlson May 7, 2026
d0cf43b
change a variable
KevinDCarlson May 11, 2026
f4b812c
Switching specializations to equality types in diagrams
KevinDCarlson Jun 4, 2026
ee63b2a
getting rid of the silly augment_with_lifts hack ahead of proper inst…
KevinDCarlson Jun 4, 2026
7e1e44a
Generate a dbl::instance from an @Instance
KevinDCarlson Jun 5, 2026
504b4c3
Remove diagram elab pathway
KevinDCarlson Jun 5, 2026
42d7dc1
should split: forgot to add DblModelInstances before; secondly, got r…
KevinDCarlson Jun 11, 2026
77ab7ea
:= morphism assignment and set literals
KevinDCarlson Jun 11, 2026
72d9489
Instance Tms, mapping syntax, improved singleton mapping syntax
KevinDCarlson Jun 12, 2026
c9ceafb
clippy
KevinDCarlson Jun 12, 2026
57f5d5c
cargo doc
KevinDCarlson Jun 12, 2026
b3dfbe9
non-recursive discrete instance terms
KevinDCarlson Jun 13, 2026
9a61d40
revert special-casing for _ ident
KevinDCarlson Jun 13, 2026
db2e8f1
fix todo
KevinDCarlson Jun 13, 2026
f392286
clippy
KevinDCarlson Jun 15, 2026
ffbd293
delete spurious diagram toplevel
KevinDCarlson Jun 15, 2026
cbd2175
make instance body type more honest
KevinDCarlson Jun 15, 2026
69a048f
eliminate stale mentions of @over
KevinDCarlson Jun 16, 2026
a8d2bde
Get the codomains into context
KevinDCarlson Jun 16, 2026
950f254
documentation for instance_body_inner
KevinDCarlson Jun 16, 2026
20feba6
introduce instance keyword to disambiguate instance terms from cons t…
KevinDCarlson Jun 17, 2026
723a891
cleanup
KevinDCarlson Jun 17, 2026
4020453
Make unit an empty record
KevinDCarlson Jun 17, 2026
2056e69
fmt
KevinDCarlson Jun 17, 2026
ab9a7ec
Cleanup spurious support for morphism equations in instance declarations
KevinDCarlson Jun 17, 2026
39cc234
FMT
KevinDCarlson Jun 17, 2026
960dd63
replace DefConst with Instance and keyword type with model
KevinDCarlson Jun 18, 2026
f988bb2
tt: hold instance codomain as a real context variable, not a side cha…
KevinDCarlson Jun 29, 2026
426684c
tt: rename TyS/TyV -> BaseTyS/BaseTyV
KevinDCarlson Jun 29, 2026
f87fc92
tt: represent instances as fiber types (FiberTy/FiberTm)
KevinDCarlson Jun 29, 2026
6ecc274
tt: rename TmS/TmV -> BaseTmS/BaseTmV
KevinDCarlson Jun 29, 2026
e18c270
fix bug on importing instances of distinct codomains, introduce Fiber…
KevinDCarlson Jun 29, 2026
5381ad5
elaborate instances over modal codomains (multicat, SMC)
KevinDCarlson Jul 2, 2026
ada1ab0
support nested codomain-morphism paths in instances (Add.op)
KevinDCarlson Jul 2, 2026
0cc997c
DblModalModel datastructure
KevinDCarlson Jul 6, 2026
a61939a
multicategory instances good to go
KevinDCarlson Jul 6, 2026
3a22e08
support for ob ops
KevinDCarlson Jul 7, 2026
c75fbab
Handling HomApps
KevinDCarlson Jul 7, 2026
8ff89a9
show off some normalization
KevinDCarlson Jul 16, 2026
070be32
add klausmeir examples from matteo
KevinDCarlson Jul 17, 2026
224553a
formatting on nb
KevinDCarlson Jul 17, 2026
064d95e
document types for instances as opposed to diagrams
KevinDCarlson Jul 17, 2026
1964f9c
AI will never be able to forget to git add new files like a genuine h…
KevinDCarlson Jul 17, 2026
5bdec7d
notebook elaboration
KevinDCarlson Jul 17, 2026
c57838a
add backup test for nb examples
KevinDCarlson Jul 17, 2026
19838f8
separate out shared fiber elaboration structure
KevinDCarlson Jul 17, 2026
ed76bff
Getting utils that aren't special to tt out of tt
KevinDCarlson Jul 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/catlog-wasm/src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ pub struct DblModel {

/// The elaborated type for the model.
#[wasm_bindgen(skip)]
pub ty: Option<(tt::stx::TyS, tt::val::TyV)>,
pub ty: Option<(tt::stx::BaseTyS, tt::val::BaseTyV)>,

/// The namespace for the objects.
#[wasm_bindgen(skip)]
Expand Down
Loading
Loading