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 structure
| File | Description | | File | Description |
| ---------------------------------------------------------- | --------------------------------------------- | | ------------------------------------------------- | --------------------------------------------- |
| [./src/My/Nats.idr](./src/My/Nats.idr) | Natural numbers | | [Nats.idr](./src/My/Nats.idr) | Natural numbers |
| [./src/My/Signs.idr](./src/My/Signs.idr) | Signs (essentially $\mathbb Z / 2 \mathbb Z$) | | [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 | | [Integers.idr](./src/My/Integers.idr) | Integers as differences of naturals |
| [./src/My/Structures.idr](./src/My/Structures.idr) | Setoids, semigroups, monoids and groups | | [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 | | [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 structure
| File | Description | | File | Description |
| ---------------------------------------------------- | ------------------------------------------------------- | | ----------------------------------------- | ------------------------------------------------------- |
| [./Learning/Noob.lean](./Learning/Noob.lean) | Syntax practice | | [Noob.lean](./Learning/Noob.lean) | Syntax practice |
| [./Learning/Nat.lean](./Learning/Nat.lean) | Natural numbers | | [Nat.lean](./Learning/Nat.lean) | Natural numbers |
| [./Learning/Integers.lean](./Learning/Integers.lean) | Integers as quotient types over differences of naturals | | [Integers.lean](./Learning/Integers.lean) | Integers as quotient types over differences of naturals |