temporary point on the inner loop wrapper

This commit is contained in:
Connor
2021-09-02 21:40:19 -06:00
parent 4d180f577a
commit 9298a7a6f3
19 changed files with 96 additions and 23 deletions

View File

@@ -9,18 +9,31 @@ this readme as I flush out the plan a little better and then as I begin producin
## Dependencies
For now, this just generates pdf files from the markdown files that I used to take notes. If you'd
like to do that, though, you'll need:
### Generate PDFs
To generate the PDFs (currently just the notes, but soon to include the thesis paper) you'll need:
- pandoc
- a working LaTeX installation
- Roboto font
- make
### Julia Code
In order to run the Julia code, you'll need Julia v1.6 or higher. This project is packaged as a package, so installing the dependencies (and the project itself) is simple. Just run:
```julia
Pkg.import(); Pkg.activate("julia"); Pkg.build()
```
## Installation
### Generate PDFs
To produce the pdfs, simply run:
```bash
make
```
### Julia Code