This update all started with trying to prove more theorems on lists
Introducing the linarith tactic seemed like a good idea
This resulted in simplifying quite a few theorems, because simp relies on import magic
more simp only
I use simp? to make theorems more robust for next time we introduce a new import, by copying the output of simp? to replace simp with a simp only ...
Remove imports of already declared types in Mathlib
I had to remove the following imports, since they are important for our project and they cause errors
Proof more theorems on lists
This update all started with trying to prove more theorems on lists Introducing the linarith tactic seemed like a good idea This resulted in simplifying quite a few theorems, because simp relies on import magic
more simp only
I use
simp?
to make theorems more robust for next time we introduce a new import, by copying the output ofsimp?
to replacesimp
with asimp only ...
Remove imports of already declared types in Mathlib
I had to remove the following imports, since they are important for our project and they cause errors
These causes errors like:
and
Add Algebra Examples
We will delete these at some point, but I'll use them in a presentation soon