1
0
mirror of https://github.com/nmvdw/HITs-Examples synced 2025-12-16 23:23:50 +01:00

Completely fixed notation

This commit is contained in:
Niels
2017-08-08 17:00:30 +02:00
parent 92bc50d79f
commit 3cda0d9bf2
12 changed files with 96 additions and 100 deletions

View File

@@ -150,7 +150,7 @@ Section properties.
Defined.
(** comprehension properties *)
Lemma comprehension_false X : {|X & (fun (_ : A) => false)|} = .
Lemma comprehension_false : forall (X : FSet A), {|X & fun _ => false|} = .
Proof.
toHProp.
Defined.
@@ -172,7 +172,7 @@ Section properties.
Defined.
Lemma comprehension_all : forall (X : FSet A),
comprehension (fun a => true) X = X.
{|X & fun _ => true|} = X.
Proof.
toHProp.
Defined.