diff --git a/theories/algebra/csum.v b/theories/algebra/csum.v index d3ff72dcf73b73d03d1bdd96f50f4666ac38e72a..a16994265b4a70b12ee14caa787045e360313f25 100644 --- a/theories/algebra/csum.v +++ b/theories/algebra/csum.v @@ -189,6 +189,10 @@ Proof. + exists (Cinl c); by constructor. + exists (Cinr c); by constructor. 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 : x ≼{n} y ↔ y = CsumBot ∨ (∃ a a', x = Cinl a ∧ y = Cinl a' ∧ a ≼{n} a')