Go to file
Frederik Hanghøj Iversen 7d6db415a1 Move modules around again.
Henceforth all modules shall be placed under the top-level module-name
`Cat` (at least until I've come up with a better name)

Also fixes an issue caused by https://github.com/Saizan/cubical-demo/ redefining Sigma.
2018-01-08 22:48:59 +01:00
libs Add new submodules 2017-11-10 16:56:52 +01:00
proposal Changes to proposal 2018-01-08 22:16:11 +01:00
report Add a better descrption to the aim-section 2017-11-10 16:10:40 +01:00
src Move modules around again. 2018-01-08 22:48:59 +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
cat.agda-lib Add README 2017-11-10 17:10:30 +01:00
README.md Add README 2017-11-10 17:10:30 +01:00

Description

This project includes code as well as my masters thesis (currently just consisting of the proposal for the thesis).

Installation

You probably need a very recent version of the Agda compiler. At the time of writing the solution has been tested with Agda version 2.6.0-9af3e07.

Dependencies

I've used git submodules to manage dependencies. Unfortunately Agda does not allow specifying libraries to be used only as local dependencies.

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.