2017-11-10 16:08:38 +00:00
|
|
|
Description
|
|
|
|
===========
|
2018-02-21 12:52:51 +00:00
|
|
|
This project aims to formalize some parts of category theory using cubical agda
|
|
|
|
— an extension to agda permitting univalence. To learn more about this
|
2018-05-08 16:48:26 +00:00
|
|
|
[read the docs](https://agda.readthedocs.io/en/latest/language/cubical.html).
|
2018-02-21 12:52:51 +00:00
|
|
|
|
|
|
|
This project draws a lot of inspiration from [the
|
|
|
|
HoTT-book](https://homotopytypetheory.org/book/).
|
2017-11-10 16:08:38 +00:00
|
|
|
|
2018-05-08 20:46:17 +00:00
|
|
|
If you want more information about this project, then you're in luck. This is my
|
|
|
|
masters thesis. Go ahead and read it:
|
|
|
|
|
|
|
|
cd doc/
|
|
|
|
make read
|
|
|
|
|
2017-11-10 16:08:38 +00:00
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
|
|
|
Dependencies
|
|
|
|
------------
|
2018-02-20 13:08:47 +00:00
|
|
|
To succesfully compile the following is needed:
|
|
|
|
|
2018-03-07 14:40:52 +00:00
|
|
|
* The Agda release candidate 2.5.4[^1]
|
2018-05-08 16:45:36 +00:00
|
|
|
* [Agda Standard Library](https://github.com/agda/agda-stdlib)
|
2018-02-21 12:52:51 +00:00
|
|
|
* [Cubical](https://github.com/Saizan/cubical-demo/)
|
|
|
|
|
2018-05-08 21:05:45 +00:00
|
|
|
[^1]: At least version >=
|
|
|
|
[`707ce6042`](https://github.com/agda/agda/commit/707ce6042b6a3bdb26521f3fe8dfe5d8a8470a43)
|
2018-03-07 14:40:52 +00:00
|
|
|
|
2018-05-08 16:45:36 +00:00
|
|
|
The version of the libraries that this depends on can be shown by
|
|
|
|
executing the following command in the root directory of the project:
|
|
|
|
|
|
|
|
git submodule foreach git rev-parse HEAD
|
|
|
|
|
|
|
|
Unfortunately Agda's module system does not allow us to automatically
|
|
|
|
add these dependencies. So you'll have to make sure you're using
|
|
|
|
versions of these libraries that are compatible with this
|
|
|
|
project. Since this information is only provided as documentation it
|
|
|
|
may also noot be up-to-date so beware.
|
|
|
|
|
2017-11-10 16:08:38 +00:00
|
|
|
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.
|