Skip to content

Commit

Permalink
update readme with instructions on how to rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
awalterschulze committed Aug 29, 2024
1 parent 11ab428 commit 91dbeb7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ We needed to redefine the following types and functions to use `Type` instead of
| equivalance | `Mathlib.Logic.Equiv.Defs.Equiv` | `TEquiv` or `<=>` in [Function.lean](./Sadol/Function.lean) |
| decidability | `Decidable` | `Decidability.Dec` in [Decidability.lean](./Sadol/Decidability.lean) |

When write proofs, we cannot rewrite using the `rw` tactic, but we need to destruct equalities, to do rewrites for us:
```
cases H with
| refl =>
```

### Simply renamings

Some things we renamed since they are simply called different things in Agda and Lean, while others were renamed to be closer to the Lean convention.
Expand Down

0 comments on commit 91dbeb7

Please sign in to comment.