1
0
mirror of https://github.com/nmvdw/HITs-Examples synced 2025-11-03 15:13:51 +01:00

Added decidable quantification

This commit is contained in:
Niels van der Weide
2017-09-22 19:42:25 +02:00
parent 2eace536c2
commit a0dbf4bfad
3 changed files with 31 additions and 2 deletions

View File

@@ -116,4 +116,18 @@ Section quantifiers.
Proof.
hinduction ; try (apply _) ; try (intros ; apply path_ishprop).
Defined.
End quantifiers.
End quantifiers.
Section simple_example.
Context `{Univalence}.
Definition P : nat -> hProp := fun n => BuildhProp(n = n).
Definition X : FSet nat := {|0|} {|1|}.
Definition simple_example : all P X.
Proof.
refine (from_squash (all P X)).
compute.
apply tt.
Defined.
End simple_example.