Skip to content
Snippets Groups Projects
Commit a18865f7 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Add lemmas for `≼` of `Cinl` and `Cinr`.

parent 6e79f000
No related branches found
No related tags found
No related merge requests found
...@@ -189,6 +189,10 @@ Proof. ...@@ -189,6 +189,10 @@ Proof.
+ exists (Cinl c); by constructor. + exists (Cinl c); by constructor.
+ exists (Cinr c); by constructor. + exists (Cinr c); by constructor.
Qed. Qed.
Lemma Cinl_included a a' : Cinl a Cinl a' a a'.
Proof. rewrite csum_included. naive_solver. Qed.
Lemma Cinr_included b b' : Cinr b Cinr b' b b'.
Proof. rewrite csum_included. naive_solver. Qed.
Lemma csum_includedN n x y : Lemma csum_includedN n x y :
x {n} y y = CsumBot ( a a', x = Cinl a y = Cinl a' a {n} a') x {n} y y = CsumBot ( a a', x = Cinl a y = Cinl a' a {n} a')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment