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

Prove Forall3_app.

parent dbbda8cb
No related branches found
No related tags found
No related merge requests found
......@@ -2341,6 +2341,10 @@ End Forall2_order.
Section Forall3.
Context {A B C} (P : A B C Prop).
Lemma Forall3_app l1 k1 k1' l2 k2 k2' :
Forall3 P l1 k1 k1' Forall3 P l2 k2 k2'
Forall3 P (l1 ++ l2) (k1 ++ k2) (k1' ++ k2').
Proof. induction 1; simpl; [done|constructor]; auto. Qed.
Lemma Forall3_impl (Q : A B C Prop) l l' k :
Forall3 P l l' k ( x y z, P x y z Q x y z) Forall3 Q l l' k.
Proof. intros Hl ?. induction Hl; constructor; auto. Defined.
......
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