Go to file
2018-04-04 17:45:36 +02:00
doc Move proposal to report, use xelatex 2018-03-29 13:32:48 +02:00
libs Use propositions straight from the horses mouth 2018-03-12 13:56:49 +01:00
src Try to use lemma for proving univalence of product-category thing 2018-04-04 17:45:36 +02:00
.gitmodules Add new submodules 2017-11-10 16:56:52 +01:00
BACKLOG.md Update backlog and changelog 2018-03-22 14:51:43 +01:00
cat.agda-lib Add comment to agda-lib 2018-01-31 14:47:20 +01:00
CHANGELOG.md Update backlog and changelog 2018-03-22 14:51:43 +01:00
libraries Add libraries file 2017-11-26 14:57:07 +01:00
Makefile Simplify qualified imports, change make-target: clean 2018-03-21 12:28:26 +01:00
README.md Update readme 2018-03-07 15:40:52 +01:00

Description

This project aims to formalize some parts of category theory using cubical agda — an extension to agda permitting univalence. To learn more about this readthedocs.

This project draws a lot of inspiration from the HoTT-book.

Installation

Dependencies

To succesfully compile the following is needed:

It's important to have the right version of these - but which one is the right is in constant flux. It's most likely the newest one.

I've used git submodules to manage dependencies. Unfortunately Agda does not allow specifying libraries to be used only as local dependencies. So the submodules are mostly used for documentation.

You can let Agda know about these libraries by appending them to your global libraries file like so: (NB!: There is a good reason this is not in a makefile. So please verify that you know what you are doing, you probably already have standard-library in you libraries)

AGDA_LIB=~/.agda
readlink -f libs/*/*.agda-lib | tee -a $AGDA_LIB/libraries

Anyways, assuming you have this set up you should be good to go.