1
0
mirror of https://github.com/nmvdw/HITs-Examples synced 2025-12-15 14:43:51 +01:00

Changed lattice

This commit is contained in:
Niels
2017-08-03 12:21:34 +02:00
parent 77a449e68b
commit 7d74b45fc3
7 changed files with 375 additions and 577 deletions

View File

@@ -12,7 +12,14 @@ Section decidable_A.
intros a.
hinduction ; try (intros ; apply path_ishprop).
- apply _.
- intros. apply _.
- intros.
unfold Decidable.
destruct (dec (a = a0)) as [p | np].
* apply (inl (tr p)).
* right.
intro p.
strip_truncations.
contradiction.
- intros. apply _.
Defined.