1
Fork 0

Make file-structures more readable

This commit is contained in:
Matei Adriel 2023-10-29 01:15:32 +02:00
parent 14461ac786
commit 7c0fbb5f4a
2 changed files with 12 additions and 12 deletions

View file

@ -4,10 +4,10 @@ This directory contains the results of my first adventure into the world of Idri
## File structure
| File | Description |
| ---------------------------------------------------------- | --------------------------------------------- |
| [./src/My/Nats.idr](./src/My/Nats.idr) | Natural numbers |
| [./src/My/Signs.idr](./src/My/Signs.idr) | Signs (essentially $\mathbb Z / 2 \mathbb Z$) |
| [./src/My/Integers.idr](./src/My/Integers.idr) | Integers as differences of naturals |
| [./src/My/Structures.idr](./src/My/Structures.idr) | Setoids, semigroups, monoids and groups |
| [./src/My/Syntax/Rewrite.idr](./src/My/Syntax/Rewrite.idr) | Coping with the lack of tactics |
| File | Description |
| ------------------------------------------------- | --------------------------------------------- |
| [Nats.idr](./src/My/Nats.idr) | Natural numbers |
| [Signs.idr](./src/My/Signs.idr) | Signs (essentially $\mathbb Z / 2 \mathbb Z$) |
| [Integers.idr](./src/My/Integers.idr) | Integers as differences of naturals |
| [Structures.idr](./src/My/Structures.idr) | Setoids, semigroups, monoids and groups |
| [Syntax/Rewrite.idr](./src/My/Syntax/Rewrite.idr) | Coping with the lack of tactics |

View file

@ -4,8 +4,8 @@ This directory contains the results of my first adventure into the world of Lean
## File structure
| File | Description |
| ---------------------------------------------------- | ------------------------------------------------------- |
| [./Learning/Noob.lean](./Learning/Noob.lean) | Syntax practice |
| [./Learning/Nat.lean](./Learning/Nat.lean) | Natural numbers |
| [./Learning/Integers.lean](./Learning/Integers.lean) | Integers as quotient types over differences of naturals |
| File | Description |
| ----------------------------------------- | ------------------------------------------------------- |
| [Noob.lean](./Learning/Noob.lean) | Syntax practice |
| [Nat.lean](./Learning/Nat.lean) | Natural numbers |
| [Integers.lean](./Learning/Integers.lean) | Integers as quotient types over differences of naturals |