Go to file
Frederik Hanghøj Iversen 3ab88395dc Merge branch 'dev' 2018-03-13 10:41:54 +01:00
libs Use propositions straight from the horses mouth 2018-03-12 13:56:49 +01:00
proposal Makefile for latex 2018-02-02 15:34:35 +01:00
report Add a better descrption to the aim-section 2017-11-10 16:10:40 +01:00
src Stuff about univalence for the category of functors 2018-03-13 10:24:50 +01:00
.gitignore Move stuff around 2017-06-07 15:35:17 +02:00
.gitmodules Add new submodules 2017-11-10 16:56:52 +01:00
BACKLOG.md Update changelog and backlog 2018-03-13 10:41:37 +01:00
CHANGELOG.md Update changelog and backlog 2018-03-13 10:41:37 +01:00
Makefile Add Makefile 2018-01-21 00:22:52 +01:00
README.md Update readme 2018-03-07 15:40:52 +01:00
cat.agda-lib Rely on global `cubical` again 2018-02-16 11:37:22 +01:00
libraries Add libraries file 2017-11-26 14:57:07 +01:00

README.md

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.